annotate luk1.css @ 62:ee2d16f9b204

Updated stylesheets.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Oct 2012 02:53:44 +0300
parents deca85fd0941
children 7f5deab32417
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 body {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 margin: 1em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 background: black;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 font-family: Verdana, Arial, helvetica, sans-serif;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 font-size: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 a, a:visited, a:active {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 text-decoration: underline;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 a:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 text-decoration: underline;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 color: #555;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 h1, h2, h3 {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21 font-family: Arial, sans-serif;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 // font-family: impact;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 font-weight: normal;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 background: rgb(10,114,133);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27 padding-bottom: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28 text-shadow: 2px 2px 2px #000;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
29 -moz-border-radius: 8pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30 border-radius: 8pt;
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
31 box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 #csssel {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35 position: absolute;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36 right: 1em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 top: 1em;
50
2be3eec4c7a5 Adjust css selector font size.
Matti Hamalainen <ccr@tnsp.org>
parents: 49
diff changeset
38 font-size: 6pt;
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 background: rgb(10,114,133);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41 -moz-border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42 border-radius: 5pt;
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
43 text-shadow: 1px 1px 1px #000;
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
44 box-shadow: 2px 2px 6px rgba(0,0,0,0.7);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46
56
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
47 #ctitle {
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
48 text-align: right;
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
49 font-size: 8pt;
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
50 }
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
51
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 #csssel a {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53 padding: 2pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54 color: #ccc;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
55 text-decoration: none;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58 #csssel a:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
59 text-decoration: underline;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
60 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
61
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
62 #clang {
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
63 text-align: right;
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
64 font-weight: bold;
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
65 }
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
66
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
67 #clang a {
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
68 color: #0f0;
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
69 }
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
70
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71 #contents {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72 z-index: 5;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73 position: absolute;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
74 right: 0.5em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
75 left: 0.5em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
76 background: rgba(10,114,133,0.6);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
77 padding: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
78 -moz-border-radius: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 border-radius: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
80 text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
81 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
82
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
83
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
84 table {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
85 border: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
86 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
87 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
88 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
89
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
90 tr {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
91 border: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
92 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
93 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
94 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
95
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
96 table.timetable th {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
97 padding: 2px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
98 margin: 2px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
99 background: #444;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
100 text-align: center;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
101
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
102 background: rgba(10,114,133,0.6);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
103 color: #ccc;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
104 -moz-border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
105 border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
106 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
107
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
108 td {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
109 padding: 4px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
110 margin: 2px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
111 color: #ccc;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
112 -moz-border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
113 border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
114 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
115
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
116 table.timetable {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
117 font-size: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120 table.timetable td > a, table.timetable td > a:visited, table.timetable td > a:active {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 text-decoration: none;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122 text-shadow: 2px 2px 2px #000;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 color: #fff;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
125
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
126 table.timetable td > a:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 color: yellow;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
129
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
130
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131 th.hours {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132 white-space: nowrap;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
134
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
135 table.timetable * table {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
136 width: 100%;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
137 height: 100%;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
138 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
139
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 table.timetable tr:hover th {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141 color: red;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
142 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
143
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
144 td.clgrouped, td.clgrouped * td {
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
145 background: rgb(55,94,103);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
147
49
16aea8e5cb71 Improved CSS, added a third stylesheet option.
Matti Hamalainen <ccr@tnsp.org>
parents: 48
diff changeset
148 td.clnothing, td.clnothing * td {
61
deca85fd0941 Adjustments in the stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 56
diff changeset
149 // background: rgb(0,84,103);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
150 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
151
49
16aea8e5cb71 Improved CSS, added a third stylesheet option.
Matti Hamalainen <ccr@tnsp.org>
parents: 48
diff changeset
152 td.clnormal, td.clnormal * td {
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
153 background: rgb(0,84,103);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155
56
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
156 td.clactive, td.clactive * td {
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
157 background: rgba(0,84,103,0.7);
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
158 border: 1px solid white;
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
159 }
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
160
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
161 div.nhours {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162 text-align: right;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
163 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
164
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
165 div.nhours span {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
166 background: black;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
167 padding: 2pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
168 border: 1px solid gray;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
169 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171 #footer {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
172 padding-top: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
173 font-size: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
174 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
175
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
176 #controls {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
177 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
178 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
179 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
180
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181 #controls table * {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
182 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
183 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
184 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
185
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
186 #controls a {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
187 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
188 margin-bottom: 30pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
189 // border: 1px solid rgba(10,114,133,0.3);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
190 -moz-border-radius: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191 border-radius: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
192 text-decoration: none;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
193 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
194 background: rgba(255,255,255,0.2);
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
195 box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
196 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
197
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
198 #controls a:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
199 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
200 background: rgba(255,255,255,0.5);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
201 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
202
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
203 #controls select {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
204 background: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
205 border: 1px solid black;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
206
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
207 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
208 -moz-border-radius: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
209 border-radius: 8px;
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
210 box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
211 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
212
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
213 #controls input.submit {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
214 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
215 background: rgba(200,255,200,0.2);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
216 border: 1px solid rgba(255,255,255,0.3);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
217
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
218 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
219 -moz-border-radius: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
220 border-radius: 8px;
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
221 box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
222 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
223
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
224 #controls input.submit:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
225 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
226 background: rgba(200,255,200,0.5);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
227 }