diff options
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 | |||