-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (83 loc) · 1.27 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
#main {
display: flex;
flex-direction: column;
align-items: center;
}
#form {
padding: 10px;
}
#command {
height: 25px;
width: 150px;
}
#submit {
width: 50px;
height: 25px;
}
#board {
display: flex;
flex-direction: row;
width: 100vw;
align-items: flex-start;
justify-content: space-around;
}
.add {
text-align: center;
width: 85%;
margin: 5px;
padding: 10px;
color: #54a0ff;
border: #54a0ff dashed 2px;
}
.col {
display: flex;
flex-direction: column;
align-self: stretch;
padding: 10px;
}
.subboard {
margin-top: 10px;
display: flex;
min-width: 30vw;
height: 100vw;
flex-direction: column;
align-self: stretch;
align-items: center;
background: #fdfdfd;
border: solid 1px #dca3a3;
}
.label {
text-align: center;
width: 90%;
margin: 5px;
padding: 10px;
color: #ffffff;
border-radius: 3px;
/* border: #54a0ff solid 2px; */
}
.label-todo {
background: #22a6b3;
}
.label-doing {
background: #f6e58d;
}
.label-done {
background: #6ab04c;
}
.task {
display: flex;
align-items: flex-start;
height: 30px;
width: 100%;
}
#remove {
display: flex;
align-self: center;
width: 70%;
text-align: center;
justify-content: center;
background: #dca3a3;
padding: 25px;
color: #ffffff;
border-radius: 10px;
}