-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
160 lines (139 loc) · 3.06 KB
/
style.css
File metadata and controls
160 lines (139 loc) · 3.06 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
body
{
margin: 0;
padding: 0;
background: none center top repeat #4d8faa;
height: 100%;
}
body, td, input, select, textarea
{
font-family: Lucida Console, Courier New, monospace;
font-size: 11px;
color: #c0c0c0;
}
table, tr, td
{
border-spacing: 0;
margin: 0;
padding: 0;
}
a img, img
{
border: none;
}
a
{
color: #ffffff;
text-decoration: none;
}
a:hover
{
color: #ffffff;
text-decoration: underline;
}
img
{
vertical-align: middle;
}
input
{
background-color: #060c0e;
border: 0;
margin: 0;
padding: 0;
height: 11px;
width: 100%;
}
input:focus
{
outline: 0;
}
#console
{
margin: 0 auto;
position: absolute;
text-align: left;
padding: 0;
width: 640px;
margin-top: -172px;
top: 50%;
left: 50%;
margin-left: -320px;
padding: 0 7px 7px 7px;
border: 1px solid #454545;
border-radius: 7px 7px 3px 3px;
background: rgba(0, 0, 0, 0.15);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3), inset 0px 7px 10px 0px rgba(255, 255, 255, 0.1), inset 0 13px rgba(255, 255, 255, 0.2), inset 0 -5px 10px rgba(0, 0, 0, 0.1), 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
-o-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3), inset 0px 7px 10px 0px rgba(255, 255, 255, 0.1), inset 0 13px rgba(255, 255, 255, 0.2), inset 0 -5px 10px rgba(0, 0, 0, 0.1), 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3), inset 0px 7px 10px 0px rgba(255, 255, 255, 0.1), inset 0 13px rgba(255, 255, 255, 0.2), inset 0 -5px 10px rgba(0, 0, 0, 0.1), 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3), inset 0px 7px 10px 0px rgba(255, 255, 255, 0.1), inset 0 13px rgba(255, 255, 255, 0.2), inset 0 -5px 10px rgba(0, 0, 0, 0.1), 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
-ms-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3), inset 0px 7px 10px 0px rgba(255, 255, 255, 0.1), inset 0 13px rgba(255, 255, 255, 0.2), inset 0 -5px 10px rgba(0, 0, 0, 0.1), 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}
#console-title
{
font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
font-size: 12px;
color: #000000;
height: 23px;
line-height: 23px;
padding-left: 1px;
display: inline-block;
text-shadow: 0px 0px 7px #ffffff;
filter: dropshadow(color=#ffffff, offx=0, offy=0);
}
#console-title img
{
margin-bottom: 3px;
}
#console-content
{
padding: 2px;
background-color: #060c0e;
border-radius: 1px;
border: 1px solid #a0a0a0;
height: 308px;
overflow: auto;
}
#console-content table
{
width: 100%;
}
#console-content table tr td
{
padding-left: 3px;
padding-right: 3px;
width: 628px;
vertical-align: middle;
}
#console-content tr td:first-child
{
width: 6px;
text-align: center;
vertical-align: top;
}
.cursor-on:after
{
content: "_";
}
.left
{
float: left;
}
.right
{
float: right;
}
.clear2
{
clear: both;
line-height: 0;
height: 0px;
}
.clear
{
clear: both;
}
.gradient
{
filter: none;
}