blob: 4830f72380e226cd158dd3cc7e3e7037d4487867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
div.page_header {
width: 100%;
display: flex;
justify-content: center;
background-color: var(--theme-color);
border-radius: 15px 15px 0 0;
}
.floating_element {
color: var(--bg-color);
position: relative;
background-color: var(--theme-color);
border-radius: 0px 0px 20px 20px;
text-align: center;
img {
max-width: 13%;
display: block;
}
}
|