-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigurator.css
More file actions
88 lines (75 loc) · 1.27 KB
/
configurator.css
File metadata and controls
88 lines (75 loc) · 1.27 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
html,
body {
height: 100%;
margin: 0;
font-family: "Montserrat", sans-serif;
background: black;
color: white;
font-size: 14px;
}
.box {
display: flex;
flex-flow: column;
height: 100%;
}
.box .row {
border: 1px dotted grey;
}
.box .row.header {
border: none;
flex: 0 1 auto;
}
.box .row.content {
border: 1px solid grey;
flex: 1 1 auto;
min-height:0;
}
.box .row.footer {
border: none;
flex: 0 1 10px;
}
.innerbox {
display: flex;
flex-flow: row;
width: 100%;
height: 100%;
min-height:0;
}
.innerbox .col {
border: 1px dotted blue;
min-height:0;
}
.innerbox .col.header {
border: none;
flex: 0 0 auto;
min-height:0;
}
.innerbox .col.content {
border: none;
flex: 1 1 auto;
min-height:0;
}
.innerbox .col.footer {
border: none;
flex: 0 1 auto;
min-height:0;
}
input.number {
width:70px;
}
div.preview {
width: 100%;
height: 100%;
min-height:0;
display: flex;
justify-content: flex-end;
flex-direction: column;
vertical-align: bottom;
overflow-y: hidden;
}
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
}