-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
173 lines (157 loc) · 3.01 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* Head section */
#head{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 30vh;
}
/* Title section */
#title{
font-size: 1.3rem;
color: black;
display: flex;
align-items: center;
justify-content: center;
}
/* Clear all Section */
#clrAll{
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
background-color: thistle;
}
#clear{
background-color: blue;
padding: 3px;
border-radius: 5px;
color: white;
font-weight: 700;
}
/* Color picker section */
#nav{
display: flex;
color: aqua;
font-weight: 900;
margin: 10px 20px;
column-gap: 10px;
align-items: center;
justify-content: space-between;
}
#datepick{
text-align: center;
font-family: 'Times New Roman', Times, serif;
background-color:cyan;
border: 2px black solid;
}
#colorpicker{
width: 30px;
border: 5px black solid;
}
h1{
font-size: 3rem;
color: white;
text-shadow: 8px 4px black ;
}
body{
background-color: rgb(168 172 197 / 88%);
}
#todo{
border-radius: 10px;
box-shadow: 10px 10px black;
background-color: rgb(166, 166, 223);
position: absolute;
border: 2px solid white;
max-width: 500px;
transform: translate(-50%);
left: 50%;
width: 40%;
}
#input{
display: flex;
justify-content: space-between;
margin: 20px;
padding: 20px;
background-color: aliceblue;
border-radius: 5px;
}
#btn{
border-radius: 10px;
color: white;
font-weight: 1000;
border: none;
padding: 10px;
background-color: blue;
}
#input input{
width: 80%;
border-radius: 10px;
padding: 10px;
}
#input input:focus{
outline: none;
border: 2px rgb(21, 27, 121) solid;
}
#list{
background-color: white;
min-height: 50px;
border-radius: 10px;
margin: 20px;
}
.lists{
padding: 10px;
display: flex;
border-bottom: 2px blue solid;
padding-left: 20px;
align-items: center;
justify-content: space-between;
}
.lists:hover{
border: 2px solid black;
border-radius: 5px;
/* background-color: black; */
}
.delbtn{
padding: 3px 5px;
color: white;
font-weight: 1000;
border-radius: 5px;
background-color: blueviolet;
}
.completed{
text-decoration: line-through;
}
.done{
margin-right: 10px;
border-radius: 5px;
color: white;
font-weight: 1000;
border: none;
padding: 5px;
background-color: blue;
}
/* Responsive */
@media (max-width:1000px) {
#input{
flex-direction: column;
}
#btn{
width: 40%;
margin-top: 10px;
}
.lists{
padding: 10px;
padding-left: 20px;
flex-direction: column;
align-items: flex-start;
}
.lists div{
margin-top: 5px;
}
}