annotate examples/css/admin.css @ 829:c2839190ca54

Update example CSS files.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 25 Nov 2014 09:56:03 +0200
parents b4e0501f5588
children 04495bb47dc9
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
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
29
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
30 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
31 * Message and image preview boxes
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
32 */
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
33 #messageBox {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
34 position: absolute;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
35 top: 0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
36 bottom: 0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
37 left: 0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
38 right: 0;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
39 z-index: 60;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
40 display: none;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
41 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
42
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
43 #messageBox div.messageBoxControls {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
44 text-align: right;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
45 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
46
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
47 #messageBox > div {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
48 position: absolute;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
49 z-index: 62;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
50 padding: 0.5em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
51 border-radius: 0.5em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
52 }
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
53
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
54 #messageBox div.messageBoxInner {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
55 top: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
56 left: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
57 min-width: 50%;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
58 height: auto;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
59 background: #080;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
60 border: 2px solid black;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
61 color: white;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
62 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
63
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
64 #messageBox div.imageBoxInner {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
65 top: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
66 left: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
67 background: #444;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
68 border: 2px solid black;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
69 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
70
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
71 #messageBox div.imageBoxInner img {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
72 position: relative;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
73 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
74
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
75
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
76 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
77 * Administration popup box
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
78 */
474
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
79 #adminPopup {
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
80 position: absolute;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
81 top: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
82 bottom: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
83 left: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
84 right: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
85 z-index: 50;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
86 display: none;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
87 }
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
88
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
89 #adminPopup > div {
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
90 position: absolute;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
91 top: 25%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
92 left: 10%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
93 height: auto;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
94 min-width: 80%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
95 max-width: 80%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
96 z-index: 52;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
97 background: black;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
98 border: 1px solid green;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
99 padding: 1.5em;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
100
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
101 border-radius: 1em;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
102 }
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
103
481
259dd7eae46d Make the show mode selector look nicer.
Matti Hamalainen <ccr@tnsp.org>
parents: 475
diff changeset
104
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
105 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
106 * Page tabs / tab headers
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
107 */
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
108 #tabHeadersCC {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
109 position: relative;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
110 top: 0.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
111 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
112 right: 0;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
113 height: 3em;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
114
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
115 z-index: 10;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
116 margin: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
117 padding-left: 1em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
118 background: #440;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
121 div.tabHeadersSub {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
122 font-size: 1em;
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
123 line-height: 2.7em;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
124 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
125
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
126 div.tabHeadersSub a, div.ctrlModeControls a {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
127 z-index: 15;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
128 text-decoration: none;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
129 padding-left: 0.25em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
130 padding-right: 0.25em;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
131 background: #060;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
132 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
133 border-radius: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
134
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
135 display: inline-block;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
136 margin-bottom: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
137 min-width: 6em;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
138 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
139
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
140 #tabHeadersCC a {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
141 position: relative;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
142 display: inline-block;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
143 z-index: 15;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
144 padding: 0.5em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145 text-decoration: none;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
146 background: #060;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
147 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
148 border-top-left-radius: 0.2em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
149 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
150 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
151
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
152 #tabHeadersCC a:hover, div.tabHeadersSub a:hover, div.ctrlModeControls a:hover {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
153 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
156 #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
157 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
158 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
159
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
160 #tabHeadersCC a.admin {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
161 right: -5em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
163
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
164
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
165 div.tabContents {
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
166 position: absolute;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
167 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
168 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
169 top: 4.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
170 bottom: 0;
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
171 padding: 1em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
172 margin: 0px;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
173 overflow-y: scroll;
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
174 }
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
175
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
176
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
177 #adminContent {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
178 position: absolute;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
179 top: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
180 bottom: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
181 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
182 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
183 padding: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
184 margin: 0;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
185 }
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
186
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
187
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
188 div.info {
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
189 padding: 1em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
190 background: black;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
191 border-radius: 0.7em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
192 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
193 }
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
194
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
195
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
196 div.votekey {
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
197 display: inline-block;
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
198 width: 8em;
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
199
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
200 margin: 0px;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
201 text-align: center;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
202 padding: 0.5em;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
203 background: black;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
204
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
205 border-right: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
206 border-bottom: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
207 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
208
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
209 div.votekey span.keyid {
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
210 font-weight: bold;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
211 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
212
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
213 div.votekey:hover, tr.votekey:hover td {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
214 background: #800;
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
215 }
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
216
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
217 div.vkeyActive, tr.vkeyActive {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
218 background: #044;
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
219 }
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
220
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
221
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
222 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
223 * Compo/infoscreen controls
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
224 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
225 div.ctrlModeControls input[type="radio"] {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
226 display: none;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
227 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
228
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
229 div.ctrlModeControls input[type="radio"] + label:before {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
230 content: "O";
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
231 display: inline-block;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
232 color: green;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
233 font-size: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
234 margin-right: 0.15em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
235 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
236
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
237 div.ctrlModeControls input[type="radio"]:checked + label:before {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
238 content: "X";
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
239 display: inline-block;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
240 color: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
241 font-weight: bold;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
242 font-size: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
243 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
244
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
245 div.ctrlModeControls input[type="radio"]:checked + label {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
246 color: white;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
247 font-weight: bold;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
248 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
249
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
250
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
251 div.ctrlModeControls, #ctrlSystemControls {
378
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
252 border: 2px solid green;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
253 padding: 0.5em;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
254 border-radius: 0.5em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
255 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
256 margin: 0.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
257 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
258
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 #ctrlEditDisplaySlide {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
261 position: absolute;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
262 top: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
263 min-width: 25%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
264 height: auto;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
265 left: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
266 min-width: 50%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
267 z-index: 52;
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 display: none;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
270 }
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 div.ctrlTitle {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
273 font-size: 1.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
274 font-weight: bold;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
275 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
276
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
277 div.ctrlBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
278 display: inline-block;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
279 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
280 border: 2px solid green;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
281 padding: 1em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
282 border-radius: 1em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
283 min-height: 12em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
284 vertical-align: top;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
285 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
286
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
287 div.ctrlButtons {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
288 padding: 0.3em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
289 text-align: right;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
290 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
291
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
292 #ctrlEditRotationList input {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
293 display: inline;
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
294 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
295
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
296 #ctrlListRotationLists {
450
c7cc689071aa Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 447
diff changeset
297 width: 30em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
298 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
299
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
300 #ctrlListDisplaySlides {
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
301 width: 25em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
302 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
303
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
304 #ctrlCompoControl {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
305 display: block;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
306 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
307
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
308 div.ctrlDBox1, div.ctrlDBox2 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
309 vertical-align: top;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
310 border-radius: 0.5em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
311 display: inline-block;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
312 }
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
313
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
314 div.ctrlDBox1 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
315 background: #060;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
316 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
317
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
318 div.ctrlDBox2 {
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
319 width: 25em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
320 border: 2pt solid #060;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
321 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
322
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
323 #ctrlCurrEntryData {
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
324 background: black;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
325 position: relative;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
326 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
327
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
328 #ctrlCurrEntryData div {
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
329 background: #020;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
330 padding: 0.5em;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
331 margin: 0.5em;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
332 border-radius: 0.5em;
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
333 overflow: hidden;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
334 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
335
475
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
336 #ctrlCurrEntryData div i {
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
337 color: red;
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
338 }
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
339
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
340 div.ctrlBox .selectBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
341 width: 100%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
342 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
343
427
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
344
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
345 div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
346 position: fixed;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
347 top: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
348 left: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
349
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
350 z-index: 52;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
351 background: black;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
352 border: 1px solid white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
353 padding: 1.5em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
354 color: white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
355
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
356 border-radius: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
357 display: none;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
358 }
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
359
474
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
360
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
361 div.ctrlBox:hover div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
362 display: block;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
363 }
447
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
364
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
365 option {
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
366 font-family: monospace;
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
367 }
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
368
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
369 #nstatus {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
370
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 #adminLogin {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
374 padding: 1em;
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
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
378 .overbooked {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
379 color: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
380 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
381
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
382 table.attendees,table.vote {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
383 width: 100%;
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 table td, table th {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
387 border-radius: 2pt;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
388 overflow-x: hidden;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
389 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
390
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
391 table th {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
392 background: #040;
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 table.attendees .regtime {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
396 width: 15%;
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 .oneliner {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
400 width: 50%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
401 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
402
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
403 table.attendees .name {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
404 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
405 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
406
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
407 table.attendees .groups {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
408 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
409 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
410
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
411 tr.rodd td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
412 background: #010;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
413 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
414
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
415 tr.reven td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
416 background: #020;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
417 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
418
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
419 table.attendees tr:hover td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
420 background: #750;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
421 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
422
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
423
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
424 .deleteWarning {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
425 background: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
426 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
427
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
428 table.attendees tr.deleteWarning td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
429 background: red;
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
430 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
431
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
432 div.compoItem, div.newsItem {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
433 margin: 0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
434 padding: 1em;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
435 border-top: 1px solid #0f0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
436 border-bottom: 1px solid #0f0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
437 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
438
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
439 h1, h2, h3 {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
440 margin: 0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
441 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
442
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
443 tr.active td {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
444 background: green;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
445 }
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
446
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
447
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
448
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
449 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
450 * Entries
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
451 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
452 div.rodd {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
453 background: #020;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
454 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
455
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
456 div.reven {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
457 background: #030;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
458 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
459
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
460 div.active {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
461 border: 1px solid #0f0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
462 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
463
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
464 div.deleteWarning {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
465 background: red;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
466 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
467
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
468
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
469 div.entryRow {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
470 position: relative;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
471 margin-top: 1em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
472 margin-bottom: 1em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
473 padding: 0.5em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
474 vertical-align: top;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
475 border-radius: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
476 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
477
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
478 div.entryCell {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
479 display: inline-block;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
480 vertical-align: top;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
481 min-width: 15em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
482 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
483
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
484
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
485 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
486 * Individual edit controls
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
487 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
488 div.editControl {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
489 vertical-align: top;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
490 padding: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
491 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
492
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
493 span.editControlTitle {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
494 background: black;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
495 display: block;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
496 text-align: center;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
497 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
498
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
499
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
500 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
501 * Specific entry items
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
502 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
503 div.entryShowID {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
504 background: #800;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
505 width: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
506 min-width: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
507 text-align: center;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
508 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
509
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
510 div.entryActions {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
511 position: absolute;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
512 right: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
513 bottom: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
514
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
515 min-width: 1em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
516 width: auto;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
517
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
518 vertical-align: bottom;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
519 text-align: right;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
520
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
521 padding: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
522 background: #050;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
523 border-radius: 0.4em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
524 }