|
| 1 | +@font-face { |
| 2 | + font-family: "Bebas Neue"; |
| 3 | + src: url('/static/fonts/BebasNeue.otf'); |
| 4 | + font-weight: normal; |
| 5 | +} |
| 6 | + |
| 7 | +@font-face { |
| 8 | + font-family: "Museo Sans"; |
| 9 | + src: url('/static/fonts/MuseoSans_500.otf'); |
| 10 | + font-weight: normal; |
| 11 | +} |
| 12 | + |
| 13 | +@font-face { |
| 14 | + font-family: "Museo Sans"; |
| 15 | + src: url('/static/fonts/MuseoSans_700.otf'); |
| 16 | + font-weight: bold; |
| 17 | +} |
| 18 | + |
| 19 | +body { |
| 20 | + font-family: 'Museo Sans', sans-serif; |
| 21 | +} |
| 22 | + |
| 23 | +h1, h2, h3, h4, h5, h6 { |
| 24 | + font-family: 'Bebas Neue', sans-serif; |
| 25 | + font-weight: normal; |
| 26 | +} |
| 27 | + |
| 28 | +.navbar-brand h4 { |
| 29 | + display: inline; |
| 30 | + margin: 0; |
| 31 | + font-size: x-large; |
| 32 | + margin: 0; |
| 33 | +} |
| 34 | + |
| 35 | +.card-header { |
| 36 | + font-size: x-large; |
| 37 | +} |
| 38 | + |
| 39 | +.quiz-card .card-header { |
| 40 | + font-size: large; |
| 41 | +} |
| 42 | + |
| 43 | +.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6 { |
| 44 | + margin: 0; |
| 45 | +} |
| 46 | + |
| 47 | +.card-header .lh-lg { |
| 48 | + line-height: 1.25 !important; |
| 49 | +} |
| 50 | + |
1 | 51 | .table.coalition-colored > :not(caption) > * > * { |
2 | 52 | background-color: transparent !important; |
3 | 53 | } |
|
20 | 70 | color: #fff !important; |
21 | 71 | } |
22 | 72 |
|
| 73 | +#quiz-question { |
| 74 | + font-size: large; |
| 75 | +} |
| 76 | + |
23 | 77 | #quiz-results-container { |
24 | 78 | margin-left: 0 !important; |
25 | 79 | margin-right: 0 !important; |
|
66 | 120 |
|
67 | 121 | .quiz-result-coalition-name { |
68 | 122 | word-break: break-all; |
69 | | - font-weight: bold; |
| 123 | + font-size: xx-large; |
70 | 124 | } |
71 | 125 |
|
72 | 126 | .quiz-result-coalition:has(input[type=radio]:checked) { |
|
189 | 243 |
|
190 | 244 | } |
191 | 245 |
|
| 246 | +.big-coalition-content .coalition-name { |
| 247 | + letter-spacing: 1px; |
| 248 | + margin: 0; |
| 249 | +} |
| 250 | + |
192 | 251 | .big-coalition-content > *:last-child { |
193 | 252 | margin-bottom: 0px !important; |
194 | 253 | } |
|
209 | 268 | .progress.extra-thick { |
210 | 269 | height: 32px; |
211 | 270 | } |
| 271 | + |
| 272 | +.login-page-bg { |
| 273 | + display: flex; |
| 274 | + flex-direction: row; |
| 275 | + flex-wrap: nowrap; |
| 276 | + justify-content: center; |
| 277 | + align-items: center; |
| 278 | + gap: 0px; |
| 279 | + min-height: 100vh; |
| 280 | +} |
| 281 | + |
| 282 | +.login-page-bg .coalition { |
| 283 | + height: 100vh; |
| 284 | + width: 100%; |
| 285 | + background-size: cover; |
| 286 | + background-repeat: no-repeat; |
| 287 | + background-position: center center; |
| 288 | +} |
| 289 | + |
| 290 | +.login-page-content { |
| 291 | + position: absolute; |
| 292 | + text-align: center; |
| 293 | + top: 50%; |
| 294 | + left: 50%; |
| 295 | + width: 90%; |
| 296 | + max-width: 400px; |
| 297 | + transform: translate(-50%, -50%); |
| 298 | + padding: 32px; |
| 299 | + background-color: rgba(0, 0, 0, 0.3); |
| 300 | + backdrop-filter: blur(8px); |
| 301 | + border-radius: 8px; |
| 302 | +} |
0 commit comments