blob: 144346e1cd85c313dce48fe1fb82c5296b942c5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.infoBlock {
background-color: var(--primary);
display: flex;
width: 100%;
border-radius: 18px;
text-align: center;
justify-content: center;
padding: 4px 0px;
text-wrap: nowrap;
}
.infoBlock > div > span:nth-child(1) {
margin-top: 0px;
font-size: 26px;
}
.infoBlock > div > span:nth-child(3) {
font-size: 50px;
font-family: BarlowCondensed-Bold;
}
|