blob: 4e104e4e58d94072d2ab5f9a3911fb049a87054f (
plain)
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
|
/*
* Copyright (c) 2012-2013 Kaarle Ritvanen
* See LICENSE file for license details
*/
body {
margin: 0;
padding: 0;
font-family: sans;
}
#status {
background-color: #cde;
height: 2em;
padding: 10px;
margin: 0;
font-size: 75%;
}
#status p {
position: absolute;
top: 0;
left: 15px;
}
#status div {
position: absolute;
top: 0.5em;
right: 15px;
}
#status input {
font-size: 100%;
}
#status.changed {
border-style: none none none solid;
border-width: 3px;
border-color: #7f7;
}
#status.invalid {
border-style: none none none solid;
border-width: 3px;
border-color: #f77;
}
.hidden { display: none; }
.invalid {
background-color: #f77;
}
.changed {
background-color: #7f7;
}
.current {
background-color: #ccc;
}
#modules li.invalid {
list-style-type: disc;
color: #f77;
background-color: inherit;
}
#modules li.changed {
list-style-type: disc;
color: #7f7;
background-color: inherit;
}
#modules {
position: absolute;
border-right: solid;
border-color: #ccc;
width: 148px;
margin: 1.8em 0 0 0;
padding: 10px 0px 10px 10px;
}
#modules li {
list-style-type: none;
padding: 3px 0px 3px 3px;
margin: 0 0 0 6px;
}
#modules a, #tabs a {
text-decoration: none;
color: black;
}
#modules a:hover, #tabs a:hover {
text-decoration: underline;
color: blue;
}
#tabs, #content {
margin: 0 0 0 158px;
padding: 0 0 0 15px;
}
#tabs {
border-bottom-style: solid;
border-color: #ccc;
height: 1.8em;
}
#tabs li {
display: inline-block;
padding: 5px;
}
#content {
padding: 10px;
}
|