-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·110 lines (97 loc) · 1.66 KB
/
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
100
101
102
103
104
105
106
107
108
109
110
form {
margin-top: 20px;
}
.container {
margin-bottom: 2em;
max-width: 800px;
font-size: 18px;
}
.container:first-child {
margin-bottom: 1em;
}
.label {
float: left;
margin-right: 2em;
padding: 1em 0;
vertical-align: center;
}
.helptext {
clear: both;
}
.helptext p {
line-height: 1;
}
code {
margin: 1em 0;
padding: 1em 2em;
display: block;
}
.input-group {
float: right;
width: 50%;
}
.input-group input {
padding: 1em;
}
.input-group input[type='number'],
.input-group input[type='text'],
.input-group textarea,
.input-group select {
width: 100%;
}
.input-group input[type='checkbox'] {
margin: 1.34em;
margin-right: 0;
float: right;
}
.input-group select {
margin: 0.9em;
margin-right: 0;
float: right;
}
.container > label {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
justify-content: space-between;
}
.container .input-group {
width: initial;
flex: 1 1 auto;
}
.card{
max-width: 800px!important;
}
input{
line-height: 1!important;
}
#settings,.settings-header{
display: flex;
flex-direction: row;
}
#settings .form, #settings .instructions,.settings-header .left,.settings-header .right{
width: 50%;
}
.settings-header img{
width: 100%;
box-shadow: 3px 3px 20px #0000003d;
max-width: 650px;
margin: auto;
}
.settings-header .right {
display: flex;
}
.settings-header .left p{
font-size: 1.2rem;
padding-right: 10px;
}
@media screen and (max-width: 990px) {
#settings,.settings-header{
flex-direction: column;
}
#settings .form, #settings .instructions,.settings-header .left,.settings-header .right{
width: 100%;
}
}