annotate luk1.css @ 50:2be3eec4c7a5

Adjust css selector font size.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 17 Oct 2012 15:48:30 +0300
parents 16aea8e5cb71
children 5adf3ec26aa0
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;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31 }
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 #csssel {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 position: absolute;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35 right: 1em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36 top: 1em;
50
2be3eec4c7a5 Adjust css selector font size.
Matti Hamalainen <ccr@tnsp.org>
parents: 49
diff changeset
37 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
38 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
39 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 -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
41 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 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 #csssel a {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 padding: 2pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46 color: #ccc;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
47 text-decoration: none;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50 #csssel a:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
51 text-decoration: underline;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54 #contents {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
55 z-index: 5;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56 position: absolute;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57 right: 0.5em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58 left: 0.5em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
59 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
60 padding: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
61 -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
62 border-radius: 10pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
63 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
64 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
66
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
67 table {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
68 border: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
69 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
70 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73 tr {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
74 border: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
75 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
76 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
77 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
78
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 table.timetable th {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
80 padding: 2px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
81 margin: 2px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
82 background: #444;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
83 text-align: center;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
84
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
85 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
86 color: #ccc;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
87 -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
88 border-radius: 5pt;
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
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
91 td {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
92 padding: 4px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
93 margin: 2px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
94 color: #ccc;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
95 -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
96 border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
97 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
98
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
99 table.timetable {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
100 font-size: 10pt;
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
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
103 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
104 text-decoration: none;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
105 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
106 color: #fff;
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
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
109 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
110 color: yellow;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
111 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
112
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
113
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
114 th.hours {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
115 white-space: nowrap;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
116 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
117
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 table.timetable * table {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 width: 100%;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120 height: 100%;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 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
124 color: red;
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
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 td.clgrouped, td.clgrouped * td {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 background: rgb(63,80,63);
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
49
16aea8e5cb71 Improved CSS, added a third stylesheet option.
Matti Hamalainen <ccr@tnsp.org>
parents: 48
diff changeset
131 td.clnothing, td.clnothing * td {
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132 background: rgb(0,84,103);
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
49
16aea8e5cb71 Improved CSS, added a third stylesheet option.
Matti Hamalainen <ccr@tnsp.org>
parents: 48
diff changeset
135 td.clnormal, td.clnormal * td {
16aea8e5cb71 Improved CSS, added a third stylesheet option.
Matti Hamalainen <ccr@tnsp.org>
parents: 48
diff changeset
136 background: rgba(0,84,103,0.7);
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
137 }
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 div.nhours {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 text-align: right;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141 }
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 div.nhours span {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
144 background: black;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145 padding: 2pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146 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
147 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
148
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
149 #footer {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
150 padding-top: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
151 font-size: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
152 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
153
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154 #controls {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
158
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
159 #controls table * {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
160 padding: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
161 margin: 0px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162 }
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 #controls a {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
165 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
166 margin-bottom: 30pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
167 // 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
168 -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
169 border-radius: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170 text-decoration: none;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
172 background: rgba(255,255,255,0.2);
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
173 }
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 #controls a:hover {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
176 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
177 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
178 }
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 #controls select {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181 background: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
182 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
183
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
184 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
185 -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
186 border-radius: 8px;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
187 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
188
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
189 #controls input.submit {
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
190 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191 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
192 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
193
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
194 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
195 -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
196 border-radius: 8px;
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
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
199 #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
200 color: white;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
201 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
202 }