-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (94 loc) · 1.74 KB
/
style.css
File metadata and controls
112 lines (94 loc) · 1.74 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
html, body, div, span, h1, h2, h3, h4, p, a, big, em, font, img, s, small, strong,
tt, var, b,u,i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, table,
tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
font-family: Arial,sans-serif; font-size: 1em;
}
.content {
overflow: hidden;
}
/* === General === */
.action {
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* === Header toolbar === */
ul.head-line {
position: relative;
top: 0;
left: 0;
right: 0;
height: 20px;
background: #0a0a0a;
color: #ffffff;
/*font-size: 150%;*/
font-weight: bold;
padding-left: 10px;
}
ul.head-line {
list-style: none;
position: relative;
}
ul.head-line li {
margin-right: 10px;
display: inline;
}
ul.head-line li.first {
margin-left: 30px;
}
ul.head-line .logo img {
height: 18px;
position: absolute;
top: 1px;
left: 5px;
}
/* === Content === */
.content {
position: absolute;
left: 0;
right: 0;
top: 20px;
bottom: 0;
}
.search-content {
position: relative;
}
.search-content {
display: none;
}
/* === Info === */
.info {
position: absolute;
top: 20px;
left: 0px;
width: 500px;
z-index: 200;
border-radius: 10px;
border: solid 1px black;
padding: 10px;
background: rgb(240,240,240);
}
.info {
margin: 5px;
}
.info table td {
padding-bottom: 10px;
}
.info .key {
font-weight: bold;
text-align: right;
}
.info .value {
font-weight: normal;
padding-left: 15px;
}