forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogress_bar.css
66 lines (55 loc) · 1.04 KB
/
progress_bar.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4;
}
.block1{
width: 160px;
height: 160px;
}
.block2{
width: auto;
height: 160px;
box-shadow: 0px 0px 10px 13px #dcdcdc;
border-radius: 50%;
padding: 20px;
}
.block3{
width: 120px;
height: 120px;
box-shadow: inset 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
border-radius: 50%;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
stroke: linear-gradient(to right, #52c234 0%, #061700 51%, #52c234 100%);
}
#num{
font-weight: bolder;
}
.container{
display: grid;
gap: 20px;
}
#btn{
padding: 10px 20px;
background-color: #52c234;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
font-size: medium;
}
#btn:hover{
background-color: #1d6802;
}