forked from lhall-amphibee/xdebug-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (90 loc) · 1.61 KB
/
styles.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
body.options {
padding: 20px 0;
}
h1 {
margin-top: 0;
}
.options ul {
margin: 0;
padding: 0;
}
.options ul li {
list-style: none;
padding: 10px 0;
margin-bottom: 15px;
background: white;
}
.options ul li h2 {
padding: 0;
margin: 0;
}
.options ul li input {
width: 20em;
margin: 0;
padding: 0.25em 0.5em;
}
.options ul li select {
width: 10em;
margin: 0;
padding: 0.25em 0.5em;
}
.options ul li input[type=checkbox] {
-moz-transform: scale(1.5); /* FF */
-webkit-transform: scale(1.5); /* Safari and Chrome */
padding: 10px;
margin-right: 10px;
}
.options .formItemContainer {
margin-bottom: 0.5em;
display: flex;
align-items: center;
}
.options .formItem {
display: flex;
align-items: center;
justify-content: space-between;
}
.options .formItem input,
.options .formItem select {
flex-grow: 2;
}
.options .buttons {
text-align: left;
}
.options form button[type=submit] {
font-size: 1.3em;
width: 15%;
text-align: center;
}
.options form label {
display: inline-flex;
width: 5em;
margin: 0.2em 0;
}
.options .u-isHidden {
display: none;
}
.options .help {
margin-left: 0.5em;
}
.options .samesiteSecureInfo {
margin-left: 5.1em;
}
.msg {
margin-left: 1em;
}
.msg-ok {
color: #1d6218;
}
@media only screen and (max-width: 400px) {
.options .formItemContainer {
flex-direction: column;
align-items: normal;
}
.options .formItemContainer > * {
margin-right: 5px;
}
.options .samesiteSecureInfo {
margin-left: 0;
}
}