aboutsummaryrefslogtreecommitdiff
path: root/assets/css/partials/header-separator.css
blob: e1e535896b3582a73b45d4ffb951f5f03be7a350 (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
26
27
28
.header-content-separator {
  position: relative;
  margin: 40px auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey-ccc);
}

.header-content-separator:before {
  position: absolute;
  left: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey-ccc);
  content: "";
}

.header-content-separator::after {
  position: absolute;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey-ccc);
  content: "";
}