-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyle.css
43 lines (37 loc) · 863 Bytes
/
style.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.section-headline {
@apply font-bold sm:text-xl uppercase tracking-widest border-green-500 border-l-8 pl-2;
}
progress {
margin-top: 0.5rem;
width: 100%;
height: 10px;
margin-bottom: 0.4rem;
}
progress::-webkit-progress-bar {
border-radius: 10px;
background-color: #d1d5db;
box-shadow: 0 2px 6px #555;
}
progress::-webkit-progress-value {
border-radius: 10px 0 0 10px;
background-image: linear-gradient(36deg, #d1fae5, #818cf8);
}
.section-headline {
color: #10b981 !important;
}
#chrisko-headline::before {
display: inline-block;
height: 30px;
width: 30px;
position: relative;
bottom: -8px;
content: "";
background-image: url("./assets/chrisko-icon.png");
background-position: center;
background-size: contain;
margin-right: 12px;
border-radius: 50%;
}