-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdistributionbuilder.css
More file actions
88 lines (71 loc) · 1.5 KB
/
distributionbuilder.css
File metadata and controls
88 lines (71 loc) · 1.5 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
/* Distbuilder */
.distbuilder {
border-width: 2px;
border-color: grey;
border-style: solid;
padding: 2px;
}
/* Grid */
.distbuilder > .grid {
background-color: lightsteelblue;
width: 100%;
padding-bottom: 2px;
padding-top: 5px;
}
.distbuilder > .grid > .distrow {
display: flex;
}
.distbuilder > .grid > .distrow > .cell {
flex: 1;
display: flex;
justify-content: center;
}
.distbuilder > .grid > .distrow > .cell > .ball {
margin-bottom: 1px;
height: 10px;
width: 10px;
border: 1px solid white;
border-radius: 50%;
align-self: center;
}
.distbuilder > .grid > .distrow > .filled > .ball {
background-color: #FF4500;
}
/* Labels */
.distbuilder > .labels {
background-color: steelblue;
width: 100%;
}
.distbuilder > .labels > .distrow {
display: flex;
width: 100%;
}
.distbuilder > .labels > .distrow > .label {
color: white;
float: left;
text-align: center;
font-size: 0.8em;
flex: 1;
}
/* Buttons */
.distbuilder > .buttons {
background-color: steelblue;
width: 100%;
}
.distbuilder > .buttons > .distrow {
display: flex;
width: 100%;
}
.distbuilder > .buttons > .distrow > .buttongroup {
text-align: center;
flex: 1;
padding-bottom: 5px;
}
.distbuilder > .buttons > .distrow > .buttongroup > .distbutton {
border-radius: 10%;
width: 60%;
margin: 0 auto !important;
padding: 0 !important;
line-height: 1 !important;
background-color: lightgrey;
}