-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
136 lines (113 loc) · 2.02 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
135
136
body {
margin: 2em;
padding: 0px;
background: #f0f0f0;
font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
}
h1 {
margin: 1em;
}
img {
border: 0px solid white;
}
a {
color: #44A;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a.home {
color: #000;
text-decoration: none;
}
a.home:hover {
text-decoration: underline;
}
#main {
background: #fff;
margin: 1em 2em 1em 2em;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
border-bottom: 1px solid #e0e0e0;
-moz-box-shadow: 3px 3px 4px #000;
-webkit-box-shadow: 3px 3px 4px #000;
box-shadow: 3px 3px 4px #000;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}
#cmd, #result {
padding: 1em;
}
#result table {
border-collapse: collapse;
}
#result th {
border: 1px solid #e0e0e0;
padding: 1px 5px;
width: 10em;
background: #f0f0f0;
}
#result td {
border: 1px solid #e0e0e0;
padding: 1px 5px;
width: 10em;
}
#result input {
display: none;
}
#footer {
margin: 2em 1em 0 1em;
font-size: 70%;
text-align: center;
}
.colvalues, .rowvalues {
margin: 1em;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
text-align: center;
font-size: 18pt;
color: #9e9e9e;
}
.colvalue {
border: 1px solid #e0e0e0;
margin: 1em;
padding: .5em;
}
.rowvalue {
font-size: 10pt;
border: 1px solid #e0e0e0;
padding: .5em;
margin: .1em;
}
.pvalue {
margin: 1em;
border: 1px solid #e0e0e0;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
text-align: center;
width: 420px;
}
.vsel {
margin: 0 0 0 0;
border-bottom: 1px solid #f0f0f0;
font-size: 30pt;
font-weight: bold;
padding: .5em;
}
.vseldim {
font-size: 18pt;
color: #9e9e9e;
}
.vcontext {
padding: 1em .5em .5em .5em;
font-size: 80%;
color: #9e9e9e;
text-align: center;
}
.vsrc {
clear: left;
font-size: 60%;
background: #f0f0f0;
padding: .2em .2em .2em 1em;
}