forked from TylerPottsDev/drag-n-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
57 lines (48 loc) · 774 Bytes
/
main.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #FFCE00;
font-family: 'Roboto', Helvetica, sans-serif;
}
.app {
display: flex;
flex-flow: column;
width: 100vw;
height: 100vh;
}
header {
display: flex;
justify-content: center;
align-items: center;
height: 60px;
}
.lists {
display: flex;
flex: 1;
width: 100%;
overflow-x: scroll;
}
.lists .list {
display: flex;
flex-flow: column;
flex: 1;
width: 100%;
min-width: 250px;
max-width: 350px;
height: 100%;
min-height: 150px;
background-color: rgba(0, 0, 0, 0.1);
margin: 0 15px;
padding: 8px;
transition: all 0.2s linear;
}
.lists .list .list-item {
background-color: #F3F3F3;
border-radius: 8px;
padding: 15px 20px;
text-align: center;
margin: 4px 0px;
}