-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
48 lines (43 loc) · 906 Bytes
/
styles.css
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@tailwind base;
@tailwind components;
@tailwind utilities;
.dark .invert-on-dark {
filter: invert(1) brightness(1.8);
}
.steps-container {
margin-left: 1rem;
padding-left: 1.5rem;
counter-reset: step;
border-left: 1px solid;
border-color: rgb(229 231 235/1);
margin-bottom: 3rem;
}
.steps-container h3 {
counter-increment: step;
}
.steps-container h3:before {
content: counter(step);
display: inline-block;
position: absolute;
margin-top: 3px;
margin-left: -41px;
width: 33px;
height: 33px;
text-align: center;
text-indent: -1px;
color: #999;
border-radius: 100%;
border: 4px solid #fff;
background: #f3f3f3;
line-height: 1.5rem;
font-size: 1rem;
font-weight: 400;
}
.dark .steps-container {
border-color: #2e2e2e;
}
.dark .steps-container h3:before {
color: #999;
border: 4px solid rgba(17, 17, 17, var(--tw-bg-opacity));
background: #2e2e2e;
}