-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
180 lines (175 loc) · 3.38 KB
/
Copy pathmain.css
File metadata and controls
180 lines (175 loc) · 3.38 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
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
174
175
176
177
178
179
180
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
font-size: 16px;
line-height: 1.5;
background-color: #f4f4f4;
color: #333;
}
header {
box-shadow: 0px 2px 10px 5px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding-bottom: 20px;
}
header h2{
text-align: center;
}
header div{
display: grid;
grid-template-columns: 7fr 1fr;
}
header div button{
grid-column: 3/3;
width:60%;
border: none;
border-radius: 40px;
box-shadow: 0px 2px 10px 5px rgba(0, 0, 0, 0.3);
margin: auto;
}
#search{
text-align: center;
}
#searchTask{
width: 40%;
padding: 1%;
background-color: #f4f4f42d;
border: none;
border-radius: 30px;
box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
}
#formSection{
width: 60%;
margin: 0px auto;
box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
border-radius: 30px;
padding: 10px;
margin-top: 40px;
}
label{
font-style: italic;
font-weight: bold;
font-size: large;
}
.formPos{
display: grid;
grid-template-columns: 1fr 1fr;
padding: 10px;
}
#formCate{
display: grid ;
grid-template-columns: 1fr 1fr;
}
#submit{
border: none;
border-radius: 45px;
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
padding: 5px;
margin: 10px 40% 3px 40%;
}
.divContainer{
display: grid;
grid-template-columns: 1fr 1fr 2fr;
grid-template-rows: 1fr 1fr 1fr;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 10px;
padding: 2px;
}
.task{
grid-column: 1/3;
grid-row:1/2 ;
}
.category{
grid-column: 2/3;
grid-row:1/2 ;
}
.description{
grid-row: 2/3;
grid-row-start: 1/3;
grid-row-end: 2/3;
}
#taskContainer{
list-style: none;
width: 80%;
margin: 0px auto;
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
border-radius: 30px;
padding: 10px;
margin-top: 40px;
}
#seprate{
display: grid;
grid-template-columns: 1fr 2fr 1fr;
}
#spinner {
grid-row: 1;
border: 4px solid #8080808d;
border-top: 4px solid #000000;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1.5s linear infinite;
margin: auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.id{
display: none;
}
#completedSection{
list-style: none;
width: 80%;
margin: 0px auto;
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
border-radius: 30px;
padding: 10px;
margin-top: 40px;
}
.completeDiv{
display: grid;
grid-template-columns: 1fr 1fr 2fr;
grid-template-rows: 1fr 1fr 1fr;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 10px;
padding: 2px;
}
.completeTask{
grid-column: 1/3;
grid-row:1/2 ;
}
.completeDescription{
grid-row: 2/3;
grid-row-start: 1/3;
grid-row-end: 2/3;
}
.completeCategory{
grid-column: 2/3;
grid-row:1/2 ;
}
.filterDiv{
border-radius:20px ;
border-bottom:2px solid rgba(0, 0, 0, 0.3) ;
border-left:2px solid rgba(0, 0, 0, 0.3);
border-right:2px solid rgba(0, 0, 0, 0.3);
display: grid;
grid-template-columns: 1fr 1fr 2fr;
text-align: left;
grid-template-rows: 1fr 1fr;
}
.filterTask{
grid-row: 1/2;
grid-column: 1/3;
}
.filterDescription{
grid-column: 3/3;
grid-row-start:1/2;
grid-row-end: 2/2;
}
.filterCategory{
grid-row: 1/2;
grid-column: 2/3;
}