-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
146 lines (123 loc) · 2.32 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
--box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 16px;
font-family: 'Poppins', sans-serif;
text-decoration: none;
list-style: none;
}
.hide {
display: none !important;
}
.wrap {
background-color: #0d479a;
width: 1200px;
border-radius: 5px;
min-height: 80vh;
padding: 35px;
margin: 30px auto;
}
.heading {
margin: 10px auto 40px auto;
}
.heading .title {
font-size: 30px;
color: #ffff;
font-weight: 500;
text-align: center;
}
.heading .subtitle {
font-size: 20px;
color: #ffff;
font-weight: 500;
text-align: center;
}
.task-manager {
min-width: 350px;
max-width: 450px;
margin: auto;
}
.search-box,
.task-box,
.message {
background-color: #ffffff;
padding: 20px 25px;
border-radius: 3px;
margin: 20px 0px;
}
.search-box .search {
display: flex;
margin: 10px 0px;
}
.search-box input {
border-radius: 3px;
width: 100%;
margin-right: 10px;
padding: 10px;
font-size: 16px;
}
.search-box i.reset {
font-size: 24px;
height: 100%;
padding: 10px 0px;
cursor: pointer;
}
.task-box .tasks {
margin: 10px 0px;
}
.task-box li {
background-color: #f2f2f2;
margin: 10px 0px;
display: flex;
justify-content: space-between;
}
.task-box span {
padding: 10px;
}
.task-box i.delete {
color: #ffffff;
background-color: #D82148;
border-radius: 0px 2px 2px 0px;
height: 100%;
padding: 10px;
cursor: pointer;
}
.task-box .add {
display: flex;
margin: 30px 0px 10px 0px;
}
.task-box input[type="text"] {
border-radius: 3px;
width: 100%;
margin-right: 10px;
padding: 10px;
font-size: 16px;
}
.task-box input[type="submit"] {
padding: 10px;
font-size: 16px;
cursor: pointer;
background-color: #65C18C;
border: 0px;
border-radius: 3px;
}
.message {
display: flex;
justify-content: space-between;
align-items: center;
}
.message .clear {
border: 0px;
background-color: #11468F;
color: #ffffff;
cursor: pointer;
padding: 10px;
font-size: 16px;
border-radius: 3px;
}