-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (51 loc) · 930 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
background-color: #fff;
overflow: hidden;
}
h1 {
color: #323330;
}
.container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 20px;
}
.drop-targets {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
margin: 20px 0;
}
.box {
height: 150px;
width: 150px;
border: solid 3px #ccc;
margin: 10px;
/* align items in the box */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.drag-over {
border: dashed 3px red;
}
.item {
height: 75px;
width: 75px;
background-color: #F0DB4F;
}
.hide {
display: none;
}