-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (126 loc) · 2.23 KB
/
style.css
File metadata and controls
128 lines (126 loc) · 2.23 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0;
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 800px;
height: 800px;
background-color: #e7e7e9;
border-radius: 10px;
box-shadow: 0px 0px 100px #acadac;
}
.headContainer{
width: 100%;
height: 80px;
position: relative;
}
.heading{
font-family: "Protest Strike", sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
border-radius: 10px;
position: absolute;
top: 30px;
}
.name{
width: 250px;
height: 100px;
font-size: 48px;
color: #2A7DE1;
left: 30px;
}
.clock{
width: 150px;
height: 100px;
font-size: 52px;
color: #182E43;
right: 30px;
}
.todoListContainer{
width: 800px;
height: 720px;
background-color: #ffffff;
border-radius: 0px 0px 10px 10px;
display: flex;
flex-direction: column;
}
.addContainer{
width: 800px;
height: 50px;
display: flex;
justify-content: space-around;
margin-top: 50px;
}
#addInput{
font-family: "Roboto", sans-serif;
width: 560px;
border-radius: 5px;
border: 2px solid #0d21a1;
font-size: 28px;
}
#addBtn{
font-family: "Protest Strike", sans-serif;
font-size: 34px;
width: 118px;
background-color: #0d21a1;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
letter-spacing: 1.5px;
}
#addBtn:hover{
background-color: #1f36cc;
}
.taskContainer{
width: 800px;
height: 50px;
display: flex;
justify-content: space-evenly;
margin-top: 25px;
}
.task{
width: 550px;
height: 50px;
background-color: #f9f7f3;
border-radius: 5px;
font-family: "Roboto", sans-serif;
font-weight: 500;
font-size: 28px;
color: #050a30;
display: flex;
padding-left: 10px;
align-items: center;
}
.btn{
padding: 10px;
width: 30px;
height: 30px;
border-radius: 5px;
cursor: pointer;
}
.check{
background-color: #85b168;
}
.check:hover{
background-color: #96c07a;
}
.close{
background-color: #ff7f50;
}
.close:hover{
background-color: #fc8e66;
}
.edit{
background-color: #48cae4;
}
.edit:hover{
background-color: #59d4ec;
}