-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
113 lines (96 loc) · 1.84 KB
/
Copy pathstyles.css
File metadata and controls
113 lines (96 loc) · 1.84 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:Georgia, 'Times New Roman', Times, serif;
}
body{
background-color: rgb(127, 161, 190);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
display: flex;
flex-direction: column;
gap: 1.5rem;
background-color: rgba(227, 213, 226, 0.414);
padding: 20px;
border-radius: 10px;
width: 50%;
max-width: 660px;
}
h1{
font-size: 2rem;
}
.user-container{
display: flex;
flex-direction: column;
gap: 10px;
justify-content: start;
}
.user-input-container{
display: flex;
justify-content: space-between;
}
#user-input{
width: 80%;
padding: 0.4rem;
border-radius: 4rem;
}
#search-btn{
padding: 0.4rem;
border-radius: 4rem;
}
.circle{
width: 120px;
height: 120px;
border-radius: 50%;
border: 2.5px solid rgb(14, 32, 48);
position: relative;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
color: rgb(255, 251, 251);
/* -webkit-text-stroke: 0.3px rgb(0, 0, 0); */
font-weight: 700;
background: conic-gradient(#082131c1 var(--progress-degree , 0%), #cbcbcb 0%);
flex-direction: column;
}
circle span{
position: relative;
z-index: 2;
}
.progress{
display: flex;
flex-direction: row;
justify-content: space-evenly;
/* align-items: center; */
flex-wrap: wrap;
gap: 10px;
}
.stats-cards{
margin-top: 2rem;
margin-bottom: 2rem;
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: space-evenly;
}
h4{
font-size: 1rem;
}
.card{
background-color: #cecfdb;
width: 50%;
max-width: 290px;
padding: 20px;
border-radius: 10px;
font-size: 1rem;
min-height: 4rem;
}
.hidden {
display: none;
}