-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (128 loc) · 2.34 KB
/
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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--background: #26004a;
--secondaryBackground: #2e1748;
--text: #fff;
--purple: #828dff;
--teal: #24feee;
}
body{
background-color: var(--background);
color: var(--text);
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 100px;
margin-left: 400px;
max-width: 600px;
}
.stats-container{
padding: 30px;
border-radius: 20px;
border: 2px solid var(--purple);
display: flex;
gap: 50px;
width: 100%;
justify-content: space-between;
}
.details{
width: 100%;
}
#progressBar{
width: 100%;
height: 10px;
background-color: var(--secondaryBackground);
border-radius: 5px;
margin-top: 20px;
}
#progress{
width: 0%;
height: 10px;
background-color: var(--teal);
border-radius: 10px;
transition: all 0.3s ease;
}
#number{
width: 100px;
height: 100px;
background-color: var(--purple);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 30px;
font-weight: bold;
}
form{
margin-top: 60px;
width: 100%;
display: flex;
}
input{
flex: 1;
padding: 16px;
background: var(--secondaryBackground);
border: 1px solid var(--purple);
border-radius: 10px;
outline: none;
color: var(--text);
}
button{
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--purple);
color: var(--text);
font-size: 30px;
font-weight: bold;
outline: none;
border: none;
cursor: pointer;
}
#task-list{
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 30px;
width: 100%;
list-style: none;
}
.taskItem{
width: 100%;
display: flex;
background-color: var(--secondaryBackground);
padding: 10px;
justify-content: space-between;
border-radius: 10px;
align-items: center;
}
.task{
display: flex;
align-items: center;
gap: 25px;
}
.task input{
width: 20px;
height: 20px;
margin-left: 5px;
}
.completed p{
text-decoration: line-through;
color: var(--teal);
}
.taskItem img{
width: 40px;
height: 40px;
cursor: pointer;
border-radius: 10px;
margin-right: 10px;
}