blob: 3c02cd1cb7b7155cd6ffb383061a1d9cedca2f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.header-content-separator,
.header-content-separator:before,
.header-content-separator:after {
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--grey-ccc);
}
.header-content-separator {
position: relative;
margin: 40px auto;
}
.header-content-separator:before {
position: absolute;
left: -8px;
content: "";
}
.header-content-separator:after {
position: absolute;
left: 8px;
content: "";
}
|