Description:
uses asset pipeline to generate application.css from .sass
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r327:c95385c3b8e4 - - 9 files changed: 293 inserted, 823 deleted
new file 100644 | |||||
binary diff hidden |
@@ -0,0 +1,293 | |||||
|
|
1 | + body | ||
|
|
2 | + background: white image-url("topbg.jpg") repeat-x top center | ||
|
|
3 | + font-size: 13px | ||
|
|
4 | + font-family: Tahoma, "sans-serif" | ||
|
|
5 | + margin: 10px | ||
|
|
6 | + padding: 10px | ||
|
|
7 | + | ||
|
|
8 | + | ||
|
|
9 | + input | ||
|
|
10 | + font-family: Tahoma, "sans-serif" | ||
|
|
11 | + | ||
|
|
12 | + | ||
|
|
13 | + h1 | ||
|
|
14 | + font-size: 24px | ||
|
|
15 | + color: #334488 | ||
|
|
16 | + line-height: 2em | ||
|
|
17 | + | ||
|
|
18 | + | ||
|
|
19 | + h2 | ||
|
|
20 | + font-size: 18px | ||
|
|
21 | + color: #5566bb | ||
|
|
22 | + line-height: 1.5em | ||
|
|
23 | + | ||
|
|
24 | + | ||
|
|
25 | + hr | ||
|
|
26 | + border-top: 1px solid #dddddd | ||
|
|
27 | + border-bottom: 1px solid #eeeeee | ||
|
|
28 | + | ||
|
|
29 | + | ||
|
|
30 | + a | ||
|
|
31 | + color: #6666cc | ||
|
|
32 | + text-decoration: none | ||
|
|
33 | + | ||
|
|
34 | + &:link, &:visited | ||
|
|
35 | + color: #6666cc | ||
|
|
36 | + text-decoration: none | ||
|
|
37 | + | ||
|
|
38 | + &:hover, &:focus | ||
|
|
39 | + color: #111166 | ||
|
|
40 | + text-decoration: none | ||
|
|
41 | + | ||
|
|
42 | + | ||
|
|
43 | + div | ||
|
|
44 | + &.userbar | ||
|
|
45 | + line-height: 1.5em | ||
|
|
46 | + text-align: right | ||
|
|
47 | + font-size: 12px | ||
|
|
48 | + | ||
|
|
49 | + &.title | ||
|
|
50 | + padding: 10px 0px | ||
|
|
51 | + line-height: 1.5em | ||
|
|
52 | + font-size: 13px | ||
|
|
53 | + | ||
|
|
54 | + span.contest-over-msg | ||
|
|
55 | + font-size: 15px | ||
|
|
56 | + color: red | ||
|
|
57 | + | ||
|
|
58 | + table | ||
|
|
59 | + width: 100% | ||
|
|
60 | + font-weight: bold | ||
|
|
61 | + | ||
|
|
62 | + td | ||
|
|
63 | + &.left-col | ||
|
|
64 | + text-align: left | ||
|
|
65 | + vertical-align: top | ||
|
|
66 | + color: #444444 | ||
|
|
67 | + | ||
|
|
68 | + &.right-col | ||
|
|
69 | + text-align: right | ||
|
|
70 | + vertical-align: top | ||
|
|
71 | + font-size: 18px | ||
|
|
72 | + color: #116699 | ||
|
|
73 | + | ||
|
|
74 | + | ||
|
|
75 | + table.info | ||
|
|
76 | + margin: 10px 0 | ||
|
|
77 | + border: 1px solid #666666 | ||
|
|
78 | + border-collapse: collapse | ||
|
|
79 | + font-size: 12px | ||
|
|
80 | + | ||
|
|
81 | + th | ||
|
|
82 | + border: 1px solid #666666 | ||
|
|
83 | + line-height: 1.5em | ||
|
|
84 | + padding: 0 0.5em | ||
|
|
85 | + | ||
|
|
86 | + td | ||
|
|
87 | + border-left: 1px solid #666666 | ||
|
|
88 | + border-right: 1px solid #666666 | ||
|
|
89 | + line-height: 1.5em | ||
|
|
90 | + padding: 0 0.5em | ||
|
|
91 | + | ||
|
|
92 | + | ||
|
|
93 | + tr | ||
|
|
94 | + &.info-head | ||
|
|
95 | + background: #777777 | ||
|
|
96 | + color: white | ||
|
|
97 | + | ||
|
|
98 | + &.info-odd | ||
|
|
99 | + background: #eeeeee | ||
|
|
100 | + | ||
|
|
101 | + &.info-even | ||
|
|
102 | + background: #fcfcfc | ||
|
|
103 | + | ||
|
|
104 | + =basicbox | ||
|
|
105 | + background: #eeeeff | ||
|
|
106 | + border: 1px dotted #99aaee | ||
|
|
107 | + padding: 5px | ||
|
|
108 | + margin: 10px 0px | ||
|
|
109 | + color: black | ||
|
|
110 | + font-size: 13px | ||
|
|
111 | + | ||
|
|
112 | + .infobox | ||
|
|
113 | + +basicbox | ||
|
|
114 | + | ||
|
|
115 | + .submitbox | ||
|
|
116 | + +basicbox | ||
|
|
117 | + | ||
|
|
118 | + .errorExplanation | ||
|
|
119 | + border: 1px dotted gray | ||
|
|
120 | + color: #bb2222 | ||
|
|
121 | + padding: 5px 15px 5px 15px | ||
|
|
122 | + margin-bottom: 5px | ||
|
|
123 | + background-color: white | ||
|
|
124 | + font-weight: normal | ||
|
|
125 | + | ||
|
|
126 | + h2 | ||
|
|
127 | + color: #cc1111 | ||
|
|
128 | + font-weight: bold | ||
|
|
129 | + | ||
|
|
130 | + | ||
|
|
131 | + table.uinfo | ||
|
|
132 | + border-collapse: collapse | ||
|
|
133 | + border: 1px solid black | ||
|
|
134 | + font-size: 13px | ||
|
|
135 | + | ||
|
|
136 | + | ||
|
|
137 | + td.uinfo | ||
|
|
138 | + vertical-align: top | ||
|
|
139 | + border: 1px solid black | ||
|
|
140 | + padding: 5px | ||
|
|
141 | + | ||
|
|
142 | + | ||
|
|
143 | + th.uinfo | ||
|
|
144 | + background: lightgreen | ||
|
|
145 | + vertical-align: top | ||
|
|
146 | + text-align: right | ||
|
|
147 | + border: 1px solid black | ||
|
|
148 | + padding: 5px | ||
|
|
149 | + | ||
|
|
150 | + | ||
|
|
151 | + div | ||
|
|
152 | + &.compilermsgbody | ||
|
|
153 | + font-family: monospace | ||
|
|
154 | + | ||
|
|
155 | + &.task-menu | ||
|
|
156 | + text-align: center | ||
|
|
157 | + font-size: 13px | ||
|
|
158 | + line-height: 1.75em | ||
|
|
159 | + font-weight: bold | ||
|
|
160 | + border-top: 1px dashed gray | ||
|
|
161 | + border-bottom: 1px dashed gray | ||
|
|
162 | + margin-top: 2px | ||
|
|
163 | + margin-bottom: 4px | ||
|
|
164 | + | ||
|
|
165 | + | ||
|
|
166 | + table.taskdesc | ||
|
|
167 | + border: 2px solid #dddddd | ||
|
|
168 | + border-collapse: collapse | ||
|
|
169 | + margin: 10px auto | ||
|
|
170 | + width: 90% | ||
|
|
171 | + font-size: 13px | ||
|
|
172 | + | ||
|
|
173 | + p | ||
|
|
174 | + font-size: 13px | ||
|
|
175 | + | ||
|
|
176 | + tr.name | ||
|
|
177 | + border: 2px solid #dddddd | ||
|
|
178 | + background: #dddddd | ||
|
|
179 | + color: #333333 | ||
|
|
180 | + font-weight: bold | ||
|
|
181 | + font-size: 14px | ||
|
|
182 | + line-height: 1.5em | ||
|
|
183 | + text-align: center | ||
|
|
184 | + | ||
|
|
185 | + td | ||
|
|
186 | + &.desc-odd | ||
|
|
187 | + padding: 5px | ||
|
|
188 | + padding-left: 20px | ||
|
|
189 | + background: #fefeee | ||
|
|
190 | + | ||
|
|
191 | + &.desc-even | ||
|
|
192 | + padding: 5px | ||
|
|
193 | + padding-left: 20px | ||
|
|
194 | + background: #feeefe | ||
|
|
195 | + | ||
|
|
196 | + | ||
|
|
197 | + .announcementbox | ||
|
|
198 | + margin: 10px 0px | ||
|
|
199 | + background: #bbddee | ||
|
|
200 | + padding: 1px | ||
|
|
201 | + | ||
|
|
202 | + span.title | ||
|
|
203 | + font-weight: bold | ||
|
|
204 | + color: #224455 | ||
|
|
205 | + padding-left: 10px | ||
|
|
206 | + line-height: 1.6em | ||
|
|
207 | + | ||
|
|
208 | + .announcement | ||
|
|
209 | + margin: 2px | ||
|
|
210 | + background: white | ||
|
|
211 | + padding: 1px | ||
|
|
212 | + padding-left: 10px | ||
|
|
213 | + padding-right: 10px | ||
|
|
214 | + padding-top: 5px | ||
|
|
215 | + padding-bottom: 5px | ||
|
|
216 | + | ||
|
|
217 | + | ||
|
|
218 | + .announcement p | ||
|
|
219 | + font-size: 12px | ||
|
|
220 | + margin: 2px | ||
|
|
221 | + | ||
|
|
222 | + | ||
|
|
223 | + .pub-info | ||
|
|
224 | + text-align: right | ||
|
|
225 | + font-style: italic | ||
|
|
226 | + font-size: 9px | ||
|
|
227 | + | ||
|
|
228 | + p | ||
|
|
229 | + text-align: right | ||
|
|
230 | + font-style: italic | ||
|
|
231 | + font-size: 9px | ||
|
|
232 | + | ||
|
|
233 | + | ||
|
|
234 | + .announcement | ||
|
|
235 | + .toggles | ||
|
|
236 | + font-weight: normal | ||
|
|
237 | + float: right | ||
|
|
238 | + font-size: 80% | ||
|
|
239 | + | ||
|
|
240 | + .announcement-title | ||
|
|
241 | + font-weight: bold | ||
|
|
242 | + | ||
|
|
243 | + | ||
|
|
244 | + div | ||
|
|
245 | + &.message | ||
|
|
246 | + margin: 10px 0 0 | ||
|
|
247 | + | ||
|
|
248 | + div | ||
|
|
249 | + &.message | ||
|
|
250 | + margin: 0 0 0 30px | ||
|
|
251 | + | ||
|
|
252 | + &.body | ||
|
|
253 | + border: 2px solid #dddddd | ||
|
|
254 | + background: #fff8f8 | ||
|
|
255 | + padding-left: 5px | ||
|
|
256 | + | ||
|
|
257 | + &.reply-body | ||
|
|
258 | + border: 2px solid #bbbbbb | ||
|
|
259 | + background: #fffff8 | ||
|
|
260 | + padding-left: 5px | ||
|
|
261 | + | ||
|
|
262 | + &.stat | ||
|
|
263 | + font-size: 10px | ||
|
|
264 | + line-height: 1.75em | ||
|
|
265 | + padding: 0 5px | ||
|
|
266 | + color: #333333 | ||
|
|
267 | + background: #dddddd | ||
|
|
268 | + font-weight: bold | ||
|
|
269 | + | ||
|
|
270 | + &.message div.stat | ||
|
|
271 | + font-size: 10px | ||
|
|
272 | + line-height: 1.75em | ||
|
|
273 | + padding: 0 5px | ||
|
|
274 | + color: #444444 | ||
|
|
275 | + background: #bbbbbb | ||
|
|
276 | + font-weight: bold | ||
|
|
277 | + | ||
|
|
278 | + &.contest-title | ||
|
|
279 | + color: white | ||
|
|
280 | + text-align: center | ||
|
|
281 | + line-height: 2em | ||
|
|
282 | + | ||
|
|
283 | + &.registration-desc, &.test-desc | ||
|
|
284 | + border: 1px dotted gray | ||
|
|
285 | + background: #f5f5f5 | ||
|
|
286 | + padding: 5px | ||
|
|
287 | + margin: 10px 0 | ||
|
|
288 | + font-size: 12px | ||
|
|
289 | + line-height: 1.5em | ||
|
|
290 | + | ||
|
|
291 | + h2.contest-title | ||
|
|
292 | + margin-top: 5px | ||
|
|
293 | + margin-bottom: 5px No newline at end of file |
deleted file |
deleted file | |||||
binary diff hidden |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
You need to be logged in to leave comments.
Login now