-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (78 loc) · 1.53 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Radley&display=swap');
body{
background-color: #C1CFC0;
}
.heading{
font-family: 'Radley', serif;
text-align: center;
}
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #131921;
}
.D{
margin: 20px 20px;
text-align: center;
align-items: center;
font-size: 2rem;
color: whitesmoke;
}
.Yo{
font-size: 1rem;
font-weight: bolder;
display: block;
}
.one{
display: block;
position: relative;
}
.container{
display: flex;
width: 350px;
padding: 50px 0;
border-radius: 8px;
background: #fff;
row-gap: 30px;
flex-direction: column;
align-items: center;
}
.circular-progress{
position: relative;
height: 150px;
width: 150px;
border-radius: 50%;
background: conic-gradient(#febd69 3.6deg, #ededed 0deg);
display: flex;
align-items: center;
justify-content: center;
}
.circular-progress::before{
content: "";
position: absolute;
height: 110px;
width: 110px;
border-radius: 50%;
background-color: #fff;
}
.progress-value{
position: relative;
font-size: 40px;
font-weight: 600;
color: #ff9900;
}
.text{
font-size: 30px;
font-weight: 500;
color: #606060;
}