-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
172 lines (146 loc) · 2.79 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.container{
padding-top: 20px;
background-color: rgb(0, 0, 48);
padding-bottom: 40px;
}
.flex{
display: flex;
justify-content: center;
align-items: center;
}
.taskbar{
font-size: 19px;
border: none;
padding: 16px;
}
.taskbtn{
background-color:rgb(248, 5, 86);
padding: 15px 16px;
border: none;
color: white;
font-size: 18px;
margin-left: 12px;
cursor: pointer;
}
.btnbox{
display: flex;
justify-content: center;
align-items: center;
margin-top: 180px;
margin-left: -480px;
gap: 20px;
}
.numbtn{
border-radius: 20px;
background-color: rgb(1, 36, 77);
color: white;
padding: 9px;
width: 20px;
height: 0px;
font-size: 12px;
}
.btn{
background-color: rgb(248, 5, 86);
padding: 13px 20px;
border: none;
color: white;
font-size: 17px;
}
ul>li{
list-style: none;
}
.ourtasks{
background-color: rgb(215, 233, 248);
border-radius: 7px;
margin: 6px;
list-style: none;
padding: 17px;
width: 500px;
font-size: 20px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.checkbox_item{
margin: 10px;
}
.cuttask{
margin-left: -50px;
font-size: 22px;
cursor: pointer;
color: rgb(124, 124, 124);
}
.tasksbox{
flex-direction: column;
list-style: none;
}
.ourtasks:hover{
background-color: blanchedalmond;
}
.clearbtn{
padding: 15px 16px;
border: none;
color: white;
font-size: 18px;
margin-left: 12px;
cursor: pointer;
}
.updatebtn{
margin-left: -150px;
width: 130px;
height: 50px;
border-radius: 30px;
background-color:rgb(238, 238, 238)!important;
border: 1px solid rgb(248, 5, 86)!important;
color: rgb(255, 5, 5);
font-size: 17px;
cursor: pointer;
}
@media (max-width: 768px) {
.container {
padding: 20px;
text-align: center;
}
.taskbar,
.taskbtn,
.clearbtn {
width: 100%;
margin: 10px 0;
}
.btnbox {
flex-direction: column;
margin: 20px 0 0 0;
gap: 10px;
}
.updatebtn {
margin: 10px auto;
}
.tasksbox {
width: 100%;
}
}
@media screen and (max-width:570px){
.container{
display: flex;
flex-direction: column;
}
.tasksbox{
width: 240px;
}
.taskitem{
width: 300px;
margin-left: 70px;
}
.updatebtn{
font-size: 13px;
padding: 14px 24px;
}
.cuttask{
color: rgb(0, 0, 0);
margin-left: -20px;
font-size: 39px;
}
}