-
Notifications
You must be signed in to change notification settings - Fork 0
/
flex-app-style.css
101 lines (82 loc) · 1.27 KB
/
flex-app-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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body{
font-family: sans-serif;
}
.heading{
text-align: center;
margin-bottom: 0px;
}
.heading-text{
text-align: center;
margin: 5px 0 20px 0;
}
.flex-container{
display: flex;
border: 1px solid #555;
padding: 10px;
min-height: 200px;
}
.flex-item{
border: 1px solid grey;
background-color: #ccc;
padding: 20px;
}
.menu-container{
display: flex;
justify-content: space-between;
}
.menu{
padding: 20px;
width: 100%;
}
.code{
padding: 20px;
width: 100%;
}
.info-box{
display:inline-block;
vertical-align: top;
}
.slide-container{
margin-bottom: 8px;
}
.slider {
-webkit-appearance: none;
appearance: none;
width: 200px;
height: 25px;
background: #ddd;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
background: #777;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
background: #4CAF50;
}
.text-input{
margin-top: 3px;
display: inline-block;
vertical-align: top;
height: 18px;
}
#item-width-input, #item-height-input{
width: 40px;
}
.button{
margin-top: 3px;
display: inline-block;
vertical-align: top;
height: 24px;
}
.select-box{
padding: 3px 12px;
border-radius: 3px;
width: 200px;
margin-bottom: 8px;
}