123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- body,html {
- padding: 0;
- margin: 0;
- font-family: Arial;
- background-color: #eee;
- color: #444;
- font-size: 15px;
- line-height: 18px;
- text-shadow: 0 1px 0 rgba(255,255,255,0.4);
- }
- .connection {
- float: left;
- height: 250px;
- width: 200px;
- overflow: scroll;
- background-color: #fff;
- padding: 10px;
- margin: 5px;
- border: 1px solid #ccc;
- }
- .connection div {
- margin: 5px 0;
- }
- .connection.active {
- border-color: #FF7500;
- }
- h1 {
- font-size: 15px;
- padding: 5px 10px;
- margin: 0 -10px 0 -10px;
- border-bottom: 1px solid #ccc;
- font-weight: 300;
- }
- .active h1 strong {
- color: #FF7500;
- }
- .file, em {
- color: #999;
- font-style: italic;
- }
- #wrap {
- background-color: #ddd;
- border-width: 1px 0;
- border-color: #ccc;
- border-style: solid;
- }
- .clear {
- clear: both;
- }
- .peer {
- color: #FF7500;
- font-weight: 600;
- }
- .you {
- color: #0C6BA1;
- font-weight: 600;
- }
- #pid {
- display: inline-block;
- padding: 5px;
- margin: 5px;
- border: 1px solid #ccc;
- background-color: #fff;
- color: #0C6BA1;
- font-weight: 600;
- }
- .warning {
- font-size: 12px;
- line-height: 20px;
- padding: 10px;
- background-color: #333;
- color: #fff;
- text-shadow: 0 1px 0 rgba(0,0,0,0.4);
- font-weight: 300;
- border-width: 1px 0;
- border-color: #000;
- border-style: solid;
- }
- a {
- color: #F2C777;
- }
- .filler {
- display: block;
- padding: 10px;
- }
- #actions {
- padding: 10px;
- }
- button, input {
- font-size: 15px;
- font-family: Arial;
- border: 1px solid #ccc;
- border-right: 0;
- padding: 5px;
- background: #fff;
- margin: 0;
- color: #444;
- text-shadow: 0 1px 0 rgba(255,255,255,0.4);
- }
- input:focus {
- outline: none;
- }
- .button, button {
- cursor: pointer;
- background-color: #ddd;
- border: 1px solid #ccc;
- }
- form {
- display: inline-block;
- }
- #close {
- background-color: #FF7500;
- border-color: #c15c06;
- }
- .important {
- font-size: 15px;
- color: #F2C777;
- margin-bottom: 10px;
- }
|