-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
146 lines (138 loc) · 2.82 KB
/
app.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
color: #fff;
}
body{
background-color: #ccc;
}
.container{
margin-top: 10vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.date{
font-family: 'Fredoka One', cursive;
font-size: 25px;
width: 500px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: #606c38;
}
.header{
display: flex;
/* border: 2px solid #000; */
}
.header input{
width: 455px;
height: 45px;
background-color: #457b9d;
border: none;
padding: 12px;
/* color: #000; */
}
.header input:focus{
outline: none;
border: 2px solid #19a68c;
}
.header ::placeholder{
color: #ccc;
}
.header button{
width: 45px;
height: 45px;
background-color: #00b4d8;
font-size: 25px;
border: 0px;
cursor: pointer;
}
.container .title{
font-family: 'Fredoka One', cursive;
background-color: #606c38;
width: 500px;
min-height: 45px;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
/* border-top: 2px solid #000;
border-left: 2px solid #000;
border-right: 2px solid #000; */
}
.name{
font-size: 25px;
font-family: 'Fredoka One', cursive;
color: #fff;
background-color: #003566;
width: 500px;
min-height: 35px;
display: flex;
justify-content: center;
align-items: center;
}
.container .tasks{
background-color: #003566;
width: 500px;
min-height: 120px;
/* border-bottom: 2px solid #000;
border-left: 2px solid #000;
border-right: 2px solid #000; */
}
.taskBot{
background: #90e0ef;
height: 60px;
padding: 5px 10px;
border-radius: 0px ;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #000;
}
.task{
background: #003566;
height: 60px;
padding: 5px 10px;
border-radius: 0px ;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
border-bottom: 1px solid #ccc;
}
.task span{
font-size: 15px;
cursor: pointer;
}
.taskBot button{
font-size: 17px;
border: none;
background-color:#90e0ef;
cursor: pointer;
}
.task button{
font-size: 17px;
border: none;
background-color: #003566;
cursor: pointer;
}
.completed {
text-decoration: line-through;
opacity: 0.5;
}
.finished{
background-color: #90e0ef ;
width: 500px;
min-height: 120px;
margin-bottom: 50px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}