forked from kidaa30/js-visual-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (58 loc) · 882 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
66
67
68
69
70
* {
padding:0em;
margin:0em;
font-size:1em;
}
body {
padding:1em;
}
.commandBlock {
display:inline-block;
border-width: 1px;
border-color: #000000;
border-style: solid;
padding: 5px;
border-radius: 10px;
margin-left:1em;
}
.commandBlockFirst {
margin-left:0em;
}
.commandBlock label {
display:inline-block;
width: 120px;
}
.commandBlock input[type=number] {
width: 40px;
}
.blockRow {
margin-top:1em;
overflow:hidden;
}
.blockRow > label {
width:100%;
display:inline-block;
}
.blockRow > div {
width:auto;
height:5.5em;
border:thin solid black;
display:inline-block;
margin-right:1em;
}
.sortBlock > div {
width:.5em;
height:5em;
background-color:black;
display:inline-block;
margin:.25em;
}
.sortBlock > div.active {
background-color:red;
}
.sortBlock > div.maintainHeight {
height:5em;
width:0px;
margin-left:0px;
margin-right:0px;
}