-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
67 lines (57 loc) · 1.01 KB
/
index.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
* {
font-family: "Charm", cursive;
font-family: "Instrument Serif", serif;
font-family: "Sono", sans-serif;
}
body {
background-color: black;
}
.kanban {
display: flex;
padding: 80px;
width: 750px;
background: mediumslateblue;
border-radius: 5px;
margin: 0 auto;
text-align: center;
}
.kanban * {
font-family: sans-serif;
}
.kanban__column {
flex: 1;
}
.kanban__column:not(:last-child) {
margin-right: 30px;
}
.kanban__column-title {
margin-bottom: 20px;
font-size: 30px;
color: white;
user-select: none;
}
.kanban__item-input {
padding: 10px 15px;
box-sizing: border-box;
background: white;
border-radius: 5px;
cursor: pointer;
}
.kanban__dropzone {
height: 10px;
transition: background 0.15s, height 0.15s;
}
.kanban__dropzone--active {
height: 20px;
background: rgba(0, 0, 0, 0.25);
}
.kanban__add-item {
width: 100%;
padding: 10px 0;
font-size: 16px;
color: white;
background: rgba(0, 0, 0, 0.1);
border: none;
border-radius: 5px;
cursor: pointer;
}