annotate examples/css/admin.css @ 694:b4e0501f5588

Updated CSS example.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 10 Nov 2014 16:56:55 +0200
parents 11c10958abd4
children c2839190ca54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
1 @font-face {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
2 font-family: 'Oswald';
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
3 font-style: normal;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
4 font-weight: 300;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
5 src: local('Oswald Light'), local('Oswald-Light'), url(oswald.ttf) format('truetype');
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
6 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
7
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
8 html {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
9 -webkit-backface-visibility: hidden;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
10 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
11
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
12 body {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
13 font-size: 16px;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
14 font-family: 'Oswald', sans-serif;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
15 background: black;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
16 margin: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
17 padding: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
18 color: #0f0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
19 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
20
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
21 a {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
22 color: white;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
23 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
24
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
25 a:active, a:focus {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
26 outline: none;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
27 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
28
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
29 #messageBox {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
30 position: absolute;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
31 top: 0px;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
32 bottom: 0px;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
33 left: 0px;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
34 right: 0px;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
35 z-index: 60;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
36 display: none;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
37 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
38
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
39 #messageBox div.messageBoxInner {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
40 position: absolute;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
41 top: 25%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
42 left: 10%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
43 height: auto;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
44 min-width: 50%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
45 max-width: 80%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
46 z-index: 62;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
47 background: black;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
48 border: 2px solid green;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
49 padding: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
50 border-radius: 0.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
51 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
52
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
53 #messageBox div.messageBoxControls {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
54 text-align: right;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
55 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
56
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
57
474
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
58 #adminPopup {
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
59 position: absolute;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
60 top: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
61 bottom: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
62 left: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
63 right: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
64 z-index: 50;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
65 display: none;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
66 }
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
67
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
68 #adminPopup > div {
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
69 position: absolute;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
70 top: 25%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
71 left: 10%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
72 height: auto;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
73 min-width: 80%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
74 max-width: 80%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
75 z-index: 52;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
76 background: black;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
77 border: 1px solid green;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
78 padding: 1.5em;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
79
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
80 border-radius: 1em;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
81 }
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
82
481
259dd7eae46d Make the show mode selector look nicer.
Matti Hamalainen <ccr@tnsp.org>
parents: 475
diff changeset
83
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
84
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
85 #tabHeadersCC {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
86 position: relative;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
87 top: 0.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
88 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
89 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
90 height: 2em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
91
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
92 z-index: 10;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
93 margin: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
94 padding-left: 1em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
95 background: #440;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
96 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
97
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
98 div.tabHeadersSub {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
99 font-size: 1em;
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
100 line-height: 2.7em;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
101 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
102
418
0688a1d2122e Add link for opening the info view window.
Matti Hamalainen <ccr@tnsp.org>
parents: 405
diff changeset
103 div.tabHeadersSub a, #ctrlModeControls a {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
104 z-index: 15;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
105 text-decoration: none;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
106 padding: 0.25em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
107 background: #060;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
108 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
109 border-radius: 5pt;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
110 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
111
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
112 #tabHeadersCC a {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
113 position: relative;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
114 z-index: 15;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
115 padding: 0.5em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
116 text-decoration: none;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
117 background: #060;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
119 border-top-left-radius: 0.2em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
120 border-top-right-radius: 0.2em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
123 #tabHeadersCC a:hover, div.tabHeadersSub a:hover, #ctrlModeControls a:hover {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
125 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
126
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
127 #tabHeadersCC a:active, div.tabHeadersSub a:active {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
129 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
130
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
131 #tabHeadersCC a.admin {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
132 right: -5em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
134
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
135
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
136 div.tabContents {
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
137 position: absolute;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
138 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
139 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
140 top: 4.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
141 bottom: 0;
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
142 padding: 1em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
143 margin: 0px;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
144 overflow-y: scroll;
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
145 }
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
146
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
147
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
148 #adminContent {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
149 position: absolute;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
150 top: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
151 bottom: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
152 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
153 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
154 padding: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
155 margin: 0;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 }
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
157
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
158
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
159 div.info {
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
160 padding: 1em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
161 background: black;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
162 border-radius: 0.7em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
163 border: 0.2em solid rgba(255,0,0,0.6);
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
164 }
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
165
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
166
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
167 div.votekey {
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
168 display: inline-block;
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
169 width: 8em;
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
170
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
171 margin: 0px;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
172 text-align: center;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
173 padding: 0.5em;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
174 background: black;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
175
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
176 border-right: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
177 border-bottom: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
178 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
179
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
180 div.votekey span.keyid {
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
181 font-weight: bold;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
182 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
183
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
184 div.votekey:hover, tr.votekey:hover td {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
185 background: #800;
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
186 }
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
187
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
188 div.vkeyActive, tr.vkeyActive {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
189 background: #044;
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
190 }
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
191
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
192
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
193
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
194 #ctrlModeControls input[type="radio"] {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
195 display: none;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
196 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
197
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
198 #ctrlModeControls input[type="radio"] + label:before {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
199 content: "O";
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
200 display: inline-block;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
201 color: green;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
202 font-size: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
203 margin-right: 0.15em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
204 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
205
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
206 #ctrlModeControls input[type="radio"]:checked + label:before {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
207 content: "X";
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
208 display: inline-block;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
209 color: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
210 font-weight: bold;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
211 font-size: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
212 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
213
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
214 #ctrlModeControls input[type="radio"]:checked + label {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
215 color: white;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
216 font-weight: bold;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
217 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
218
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
219
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
220 #ctrlModeControls, #ctrlSystemControls {
378
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
221 border: 2px solid green;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
222 padding: 0.5em;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
223 border-radius: 0.5em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
224 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
225 margin: 0.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
226 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
227
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
228
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
229 #ctrlEditDisplaySlide {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
230 position: absolute;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
231 top: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
232 min-width: 25%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
233 height: auto;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
234 left: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
235 min-width: 50%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
236 z-index: 52;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
237
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
238 display: none;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
239 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
240
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
241 div.ctrlTitle {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
242 font-size: 1.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
243 font-weight: bold;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
244 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
245
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
246 div.ctrlBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
247 display: inline-block;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
248 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
249 border: 2px solid green;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
250 padding: 1em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
251 border-radius: 1em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
252 min-height: 12em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
253 vertical-align: top;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
254 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
255
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
256 div.ctrlButtons {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
257 padding: 0.3em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
258 text-align: right;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
259 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
260
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
261 #ctrlEditRotationList input {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
262 display: inline;
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
263 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
264
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
265 #ctrlListRotationLists {
450
c7cc689071aa Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 447
diff changeset
266 width: 30em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
267 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
268
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
269 #ctrlListDisplaySlides {
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
270 width: 25em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
271 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
272
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
273 #ctrlCompoControl {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
274 display: block;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
275 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
276
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
277 div.ctrlDBox1, div.ctrlDBox2 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
278 vertical-align: top;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
279 border-radius: 0.5em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
280 display: inline-block;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
281 }
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
282
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
283 div.ctrlDBox1 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
284 background: #060;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
285 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
286
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
287 div.ctrlDBox2 {
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
288 width: 25em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
289 border: 2pt solid #060;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
290 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
291
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
292 #ctrlCurrEntryData {
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
293 background: black;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
294 position: relative;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
295 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
296
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
297 #ctrlCurrEntryData div {
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
298 background: #020;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
299 padding: 0.5em;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
300 margin: 0.5em;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
301 border-radius: 0.5em;
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
302 overflow: hidden;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
303 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
304
475
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
305 #ctrlCurrEntryData div i {
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
306 color: red;
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
307 }
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
308
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
309 div.ctrlBox .selectBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
310 width: 100%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
311 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
312
427
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
313
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
314 div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
315 position: fixed;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
316 top: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
317 left: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
318
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
319 z-index: 52;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
320 background: black;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
321 border: 1px solid white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
322 padding: 1.5em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
323 color: white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
324
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
325 border-radius: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
326 display: none;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
327 }
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
328
474
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
329
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
330 div.ctrlBox:hover div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
331 display: block;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
332 }
447
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
333
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
334 option {
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
335 font-family: monospace;
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
336 }
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
337
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
338 #nstatus {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
339
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
340 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
341
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
342 #adminLogin {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
343 padding: 1em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
344 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
345
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
346
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
347 .overbooked {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
348 color: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
349 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
350
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
351
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
352 table.attendees,table.entries,table.vote {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
353 width: 100%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
354 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
355
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
356 table td, table th {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
357 border-radius: 2pt;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
358 overflow-x: hidden;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
359 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
360
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
361 table th {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
362 background: #040;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
363 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
364
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
365 table.attendees .regtime {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
366 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
367 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
368
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
369 table.attendees .oneliner {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
370 width: 50%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
371 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
372
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
373 table.attendees .name {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
374 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
375 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
376
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
377 table.attendees .groups {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
378 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
379 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
380
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
381 tr.rodd td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
382 background: #010;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
383 border-radius: 2pt;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
384 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
385
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
386 tr.reven td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
387 background: #020;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
388 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
389
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
390 table.attendees tr:hover td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
391 background: #750;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
392 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
393
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
394
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
395 .deleteWarning {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
396 background: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
397 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
398
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
399 table.attendees tr.deleteWarning td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
400 background: red;
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
401 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
402
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
403 div.compoInfo {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
404 margin: 0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
405 padding: 1em;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
406 border-top: 1px solid #0f0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
407 border-bottom: 1px solid #0f0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
408 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
409
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
410 h1, h2, h3 {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
411 margin: 0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
412 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
413
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
414 tr.active td {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
415 background: green;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
416 }