-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
63 lines (63 loc) · 1.07 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
/* Main */
* {
font-family: Roboto1, Roboto, sans-serif;
}
html, body {
min-height: 100%;
min-height: 100vh;
font-size: 16px;
line-height: 24px;
}
body {
max-width: 40em;
text-align: justify;
margin: 0 auto;
padding: .5em;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
background-color: #f2f2f2;
/* chrome: #fff */
}
form > div {
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex-grow: 1;
flex-shrink: 0;
align-items: stretch;
justify-content: center;
max-width: 40em;
}
label, input, select, p {
padding: 4px;
margin: 4px;
font-size: 16px;
line-height: 24px;
box-sizing: border-box;
background: transparent;
}
option {
padding: 0 .5em;
line-height: 24px;
}
label {
color: #999;
font-variant: small-caps;
text-align: right;
text-transform: lowercase;
min-width: 100px;
}
input {
border: none;
border-bottom: 1px solid #999;
min-width: 12em;
flex-grow: 1;
height: auto !important;
}
input:focus, a {
color: #229Dd7;
border-bottom-color: #229Dd7;
outline: none;
}