-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
188 lines (161 loc) · 3.17 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
@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&family=Roboto&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css");
:root{
--box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
* {
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;
}
.outer-wrap{
width: 100%;
height: 100vh;
background-color: #0D479A;
padding: 30px;
}
.inner-wrap{
max-width: 1200px;
margin: auto;
}
.heading{
margin-bottom: 30px;
}
.heading .title{
font-size: 30px;
color: white;
font-weight: 500;
text-align: center;
}
.heading .sub-title{
font-size: 20px;
color: white;
font-weight: 300;
text-align: center;
}
.kanban{
display: flex;
align-items: flex-start;
min-height: 80vh;
justify-content: space-evenly;
}
.taskbox{
min-width: 325px;
max-width: 500px;
margin: 10px;
background-color:#D9DFE9 ;
border-radius: 5px;
padding: 15px;
box-shadow: var(--box-shadow);
display: flex;
flex-direction: column;
}
.taskbox .title{
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0px;
}
.taskbox .title span{
font-size: 16px;
border-radius: 7px;
color: white;
padding: 10px;
background-color: #E45826;
}
.card{
background-color: #fff;
margin: 10px 0;
padding: 10px;
border-radius: 5px;
display: flex;
flex-direction: column;
box-shadow: var(--box-shadow);
}
.card input{
background-color: white;
padding: 10px;
box-shadow: rgba(99,99,99,0.2) 0px 2px 8px 0px;
margin:10px 0 ;
border-radius: 5px;
border: 0px;
}
.card div{
display: flex;
justify-content: space-between;
}
.card div span{
font-size: 12px;
padding: 5px 0px;
align-self: center;
}
.cards{
padding: 10px 5px;
}
.card div span.task-id{
background-color: #002366;
padding: 5px;
color: white;
border-radius: 5px;
}
.card .delete{
background-color: #e20000;
}
.card .update{
background-color: #005ed8;
}
.card .edit{
background-color: #646464;
}
.card button{
color: white;
font-size: 14px;
cursor: pointer;
padding: 8px;
border-radius: 5px;
margin-left: 1px;
border: 0px;
box-shadow: rgba(0,0,0,0.18) 0px 2px 4px;
}
.card.dragging{
opacity: 0.4;
}
.add{
display: flex;
}
.add input{
flex-grow: 1;
padding: 10px;
border-radius: 5px;
border: 0px;
box-shadow: rgba(0,0,0,0.18) 0px 2px 4px;
font-size: 16px;
}
.add button{
background-color: #50B286;
color: white;
font-size: 20px;
padding: 10px;
border: 0px;
border-radius: 5px;
box-shadow: rgba(0,0,0,0.18) 0px 2px 4px;
margin-left: 4px;
cursor: pointer;
align-self: center;
}
@media (max-width: 1080px){
.kanban{
align-items: center;
flex-direction: column;
}
.outer-wrap{
height: 100%;
}
}