-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.css
65 lines (59 loc) · 1.15 KB
/
box.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
.horizspace {
overflow-x: scroll;
width: auto;
white-space: nowrap;
}
[draggable] {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
/* Required to make elements draggable in old WebKit */
-khtml-user-drag: element;
-webkit-user-drag: element;
}
.b1 {
display: inline-block;
position: relative;
margin: 1%;
width: 23%;
height: 80vh;
border: 4px solid black;
background-color: white;
}
.b2 {
display: inline-block;
position: relative;
margin: 1%;
width: 23%;
height: 80vh;
border: 4px solid red;
background-color: white;
}
.b3 {
display: inline-block;
position: relative;
margin: 1%;
width: 23%;
height: 80vh;
border: 4px solid purple;
background-color: white;
}
.b4 {
display: inline-block;
position: relative;
margin: 1%;
width: 23%;
height: 80vh;
border: 4px solid blue;
background-color: white;
}
.b5 {
display: inline-block;
position: relative;
margin: 1%;
width: 23%;
height: 80vh;
border: 4px solid green;
background-color: white;
}