-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
134 lines (117 loc) · 3 KB
/
style.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
html {
font-family: Verdana, Geneva, sans-serif;
background-color: #808080;
}
h1 {
font-size: 60px;
}
h2 {
font-size: 40px;
}
p, li {
font-size: 18px;
line-height: 1;
letter-spacing: 1px;
}
body {
margin: 0 auto;
color: #FFFFFF;
background-color: #000000;
padding: 0 20px 20px 20px;
border: 5px solid black;
}
#net_progress {
visibility: hidden;
}
/* ws url text box */
#wsurl {
margin: 10px;
border: 0;
line-height: 2.5;
padding: 0 20px;
font-size: 20px;
text-align: left;
border-radius: 10px;
box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
inset 2px 2px 3px rgba(0, 0, 0, .6);
}
/* button */
.styled {
margin: 10px;
border: 0;
line-height: 2.5;
padding: 0 20px;
font-size: 20px;
text-align: center;
color: #fff;
text-shadow: 1px 1px 1px #000;
border-radius: 10px;
background-color: rgba(220, 0, 0, 1);
background-image: linear-gradient(to top left,
rgba(0, 0, 0, .2),
rgba(0, 0, 0, .2) 30%,
rgba(0, 0, 0, 0));
box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
inset -2px -2px 3px rgba(0, 0, 0, .6);
}
.styled:hover {
background-color: rgba(255, 0, 0, 1);
}
.styled:active {
box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
inset 2px 2px 3px rgba(0, 0, 0, .6);
}
/* terminal */
#term_wrap {
margin: 10px;
resize: both;
overflow: hidden;
}
.term {
font-family: monospace,courier,fixed,swiss,sans-serif;
font-size: 18px;
font-weight: normal;
font-variant-ligatures: none;
color: #f0f0f0;
background: #000000;
line-height: normal;
overflow: hidden;
white-space: nowrap;
}
.term_content a {
color: inherit;
text-decoration: none;
}
.term_content a:hover {
color: inherit;
text-decoration: underline;
}
.term_cursor {
color: #000000;
background: #00ff00;
}
.term_char_size {
display: inline-block;
visibility: hidden;
position: absolute;
top: 0px;
left: -1000px;
padding: 0px;
}
.term_textarea {
position: absolute;
top: 0px;
left: 0px;
width: 0px;
height: 0px;
padding: 0px;
border: 0px;
margin: 0px;
opacity: 0;
resize: none;
}
.term_scrollbar { background: transparent no-repeat 0 0; position: relative; background-position: 0 0; float: right; width: 15px; height: 100%; }
.term_track { background: transparent no-repeat 0 100%; height: 100%; width:13px; position: relative; padding: 0 1px; }
.term_thumb { background: transparent no-repeat 50% 100%; height: 20px; width: 25px; cursor: pointer; overflow: hidden; position: absolute; top: 0; left: -5px; }
.term_thumb .term_end { background: transparent no-repeat 50% 0; overflow: hidden; height: 5px; width: 25px; }
.noSelect { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; }