annotate luk2.css @ 193:16ce445c499a v3 tip

Import v3 branch.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 22 Jan 2017 02:31:10 +0200
parents f64a46fa7961
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
81
8501f1b9bba3 Commonize some of the CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 79
diff changeset
1 @import url("luk.css");
45
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
2
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
3 a:hover {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
4 text-decoration: underline;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
5 color: #555;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
6 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
7
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
8 h1, h2, h3 {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
9 font-family: Arial, sans-serif;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
10 font-weight: normal;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
11 color: #eee;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
12 background: #888;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
13 padding: 4px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
14 padding-bottom: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
15 text-shadow: 2px 2px 2px #000;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
16 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
17
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
18
127
1e44468dbbd8 Various style changes, and add indicators to currently selected language and
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
19 #infobox {
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
20 position: absolute;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
21 right: 1em;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
22 top: 1em;
50
2be3eec4c7a5 Adjust css selector font size.
Matti Hamalainen <ccr@tnsp.org>
parents: 48
diff changeset
23 font-size: 6pt;
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
24 background: #555;
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
25 padding: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
26 -moz-border-radius: 5pt;
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
27 border-radius: 5pt;
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
28 text-shadow: 1px 1px 1px #000;
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
29 }
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
30
62
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
31 #clang a {
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
32 color: #0f0;
ee2d16f9b204 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 61
diff changeset
33 }
48
d41b51cd4ae5 Implement switchable CSS support and a new default style + very minor code
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
34
45
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
35 table {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
36 border: 0px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
37 padding: 0px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
38 margin: 0px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
39 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
40
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
41 tr {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
42 border: 0px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
43 padding: 0px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
44 margin: 0px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
45 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
46
144
f64a46fa7961 Rename some CSS elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 127
diff changeset
47 #timeTable th {
45
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
48 padding: 2px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
49 margin: 2px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
50 background: #444;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
51 text-align: center;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
52 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
53
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
54 td {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
55 padding: 4px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
56 margin: 2px;
61
deca85fd0941 Adjustments in the stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 56
diff changeset
57 // background: #555;
45
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
58 color: #ccc;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
59 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
60
144
f64a46fa7961 Rename some CSS elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 127
diff changeset
61 #timeTable {
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
62 font-size: 10pt;
61
deca85fd0941 Adjustments in the stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 56
diff changeset
63 background: #222;
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
64 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65
144
f64a46fa7961 Rename some CSS elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 127
diff changeset
66 #timeTable td > a, table.timetable td > a:visited, table.timetable td > a:active {
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
67 text-decoration: none;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
68 text-shadow: 2px 2px 2px #000;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
69 color: #fff;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
70 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71
144
f64a46fa7961 Rename some CSS elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 127
diff changeset
72 #timeTable td > a:hover {
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73 color: yellow;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
74 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
75
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
76
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
77 th.hours {
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
78 white-space: nowrap;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
80
144
f64a46fa7961 Rename some CSS elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 127
diff changeset
81 #timeTable * table {
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
82 width: 100%;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
83 height: 100%;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
84 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
85
144
f64a46fa7961 Rename some CSS elements.
Matti Hamalainen <ccr@tnsp.org>
parents: 127
diff changeset
86 #timeTable tr:hover th {
25
a076d8d22422 Fix string parsing in the HTML parser.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
87 color: red;
a076d8d22422 Fix string parsing in the HTML parser.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
88 }
a076d8d22422 Fix string parsing in the HTML parser.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
89
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
90 td.clgrouped, td.clgrouped * td {
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
91 background: #454;
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
92 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
93
56
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
94 td.clnothing, td.clnothing * td {
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
95 }
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
96
56
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
97 td.clnormal, td.clnormal * td {
61
deca85fd0941 Adjustments in the stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 56
diff changeset
98 background: #555;
1
21fde93375e9 Add beta code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
99 }
5
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
100
70
8109809f67cb Fix "clactive" cell state in stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 62
diff changeset
101 td.clactive {
56
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
102 border: 1px solid white;
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
103 }
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
104
79
7dd647a01fb6 Implement indicator for "next" class.
Matti Hamalainen <ccr@tnsp.org>
parents: 70
diff changeset
105 td.clnext {
7dd647a01fb6 Implement indicator for "next" class.
Matti Hamalainen <ccr@tnsp.org>
parents: 70
diff changeset
106 border: 1px dashed yellow;
7dd647a01fb6 Implement indicator for "next" class.
Matti Hamalainen <ccr@tnsp.org>
parents: 70
diff changeset
107 }
56
5adf3ec26aa0 Updated stylesheets.
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
108
5
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
109 div.nhours {
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
110 text-align: right;
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
111 }
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
112
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
113 div.nhours span {
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
114 background: black;
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
115 padding: 2pt;
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
116 border: 1px solid gray;
3d6a83eaa2ba Improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
117 }
18
e0f1a5861f28 Fixes, cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
118
95
eea1ab9aff46 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
119 #controls .textctrl {
45
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
120 padding: 3pt;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
121 margin-bottom: 30pt;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
122 border: 1px solid white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
123 -moz-border-radius: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
124 border-radius: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
125 text-decoration: none;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
126 color: white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
127 background: #657;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
128 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
129
95
eea1ab9aff46 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
130 #controls .textctrl:hover {
45
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
131 background: white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
132 color: black;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
133 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
134
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
135 #controls select {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
136 background: white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
137 border: 1px solid black;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
138
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
139 padding: 5pt;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
140 -moz-border-radius: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
141 border-radius: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
142 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
143
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
144 #controls input.submit {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
145 color: white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
146 background: #686;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
147 border: 1px solid white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
148
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
149 padding: 5pt;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
150 -moz-border-radius: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
151 border-radius: 8px;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
152 }
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
153
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
154 #controls input.submit:hover {
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
155 background: white;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
156 color: black;
d8a1e85b8dda Change the visual style a tiny bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
157 }