blob: 6ef9e17a7cc89b86e3af78e45dfc3ed00343192b (
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
119
120
121
122
123
124
125
126
127
128
129
|
/*
* Copyright (c) 2012-2013 Kaarle Ritvanen
* See LICENSE file for license details
*/
body {
margin: 0;
padding: 0;
font-family: sans;
}
#status {
border-style: solid;
border-width: 3px;
border-color: #cde;
background-color: #cde;
height: 2em;
padding: 10px;
margin: 0;
font-size: 75%;
}
#status p {
position: absolute;
top: 3px;
left: 15px;
}
#logout {
position: absolute;
top: 0;
right: 0;
margin: 13px;
}
#status div {
position: absolute;
top: 0;
right: 0;
height: 2em;
padding: 13px;
}
#status input {
font-size: 100%;
}
#status.changed {
border-color: #7f7;
}
#status.invalid {
border-color: #f77;
}
.hidden { display: none; }
.invalid, #status.invalid div {
background-color: #f77;
}
.changed, #status.changed div {
background-color: #7f7;
}
.current {
background-color: #ccc;
}
#modules li:not(.current) {
background-color: inherit;
}
#modules li.invalid {
list-style-type: disc;
color: #f77;
}
#modules li.changed {
list-style-type: disc;
color: #7f7;
}
#modules {
position: absolute;
height: 90%;
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;
}
|