diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2024-12-11 09:41:13 +0100 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2024-12-11 09:41:13 +0100 |
| commit | d19aebd898af77dbc65fabfc4fe905f72769ccc7 (patch) | |
| tree | 28121000fd821b01d8662f238ea2d0a6e10ec1b5 /frontend/src/css/Info.module.css | |
| parent | fix/frontent: fix category parameter not working (diff) | |
| download | lphub-d19aebd898af77dbc65fabfc4fe905f72769ccc7.tar.gz lphub-d19aebd898af77dbc65fabfc4fe905f72769ccc7.tar.bz2 lphub-d19aebd898af77dbc65fabfc4fe905f72769ccc7.zip | |
fix/frontend: games page css rehaul, small maplist fixes
Diffstat (limited to 'frontend/src/css/Info.module.css')
| -rw-r--r-- | frontend/src/css/Info.module.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/frontend/src/css/Info.module.css b/frontend/src/css/Info.module.css new file mode 100644 index 0000000..144346e --- /dev/null +++ b/frontend/src/css/Info.module.css | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | .infoBlock { | ||
| 2 | background-color: var(--primary); | ||
| 3 | display: flex; | ||
| 4 | width: 100%; | ||
| 5 | border-radius: 18px; | ||
| 6 | text-align: center; | ||
| 7 | justify-content: center; | ||
| 8 | padding: 4px 0px; | ||
| 9 | text-wrap: nowrap; | ||
| 10 | } | ||
| 11 | |||
| 12 | .infoBlock > div > span:nth-child(1) { | ||
| 13 | margin-top: 0px; | ||
| 14 | font-size: 26px; | ||
| 15 | } | ||
| 16 | |||
| 17 | .infoBlock > div > span:nth-child(3) { | ||
| 18 | font-size: 50px; | ||
| 19 | font-family: BarlowCondensed-Bold; | ||
| 20 | } | ||
| 21 | |||