-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoo-websocket-client.css
61 lines (53 loc) · 1.41 KB
/
moo-websocket-client.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#mooscreen {
border: #f00 solid 1px;
font: 12px Courier, monospace;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
width: 48em; /* 80 x 0.6 (the width/height ratio of Courier) */
/* height: 30em; */ /* 25 x 1.2 (line-height is 1.2) */
/* line-height: 1em; */
overflow-y: scroll;
height: 400px;
}
#moocommand {
font: 12px Courier, monospace;
}
#moostatus {
color: #A52A2A;
font-weight: bold;
font-variant: small-caps;
}
#moosound {
visibility: hidden;
height: 0px;
width: 0px;
}
#moobuttons > button {
background-repeat: no-repeat;
width: 16px;
height: 16px;
border: 0;
}
input[type=text], textarea {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
border: 1px solid #DDDDDD;
}
input[type=text]:focus, textarea:focus {
box-shadow: 0 0 5px rgba(81, 203, 238, 1);
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
border: 1px solid rgba(81, 203, 238, 1);
}
.imgframe {
background: #ffffff;
box-shadow: 2px 2px 5px #DADADA;
}