-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (79 loc) · 1.51 KB
/
style.css
File metadata and controls
102 lines (79 loc) · 1.51 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* h1 {
color: #323330;
} */
.container {
height:100vh;
width: 200vw;
display: block;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
float: left;
/* margin: 20px; */
overflow-y: scroll;
border: 5px solid #000000;
padding: 10px;
}
.head {
position: relative;
width: 13vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
border: 5px solid #000000;
}
.drop-targets {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
/* width: 80%; */
margin: 20px 0;
}
.box {
height: 50px;
width: 135px;
position: relative;
margin-left: -1.7em;
/* border-top: solid 1px #eee;
border-bottom: solid 1px #eee; */
border-left: solid 0.2em #999;
border-right: solid 0.2em #999;
/* align items in the box */
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
}
.boxTop{
border: solid 0.3em #999;
}
.now {
background-color: #1286a3;
color: #062077;
}
.drag-over {
border: dashed 3px red;
}
.card {
border-color: 2px #ff0000;
}
.dragger {
margin-top: auto;
width: 50px;
height: 20px;
background-color: #ff0000;
}
.item-top{
border: 100px solid #ff0000;
}