forked from freeotp/freeotp.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.css
67 lines (56 loc) · 903 Bytes
/
common.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
* {
margin: 0;
padding: 0;
}
html {
background-color: white;
}
body {
font-family: Sans-Serif;
text-align: center;
max-width: 640px;
margin: auto;
width: 90vw;
}
body > * {
text-align: justify;
padding: 1em;
}
body > :not(:first-child) {
border-top: 1px solid black;
}
header {
background-image: url("img/freeotp.svg");
background-position: 0 0.5em;
background-repeat: no-repeat;
background-size: 6em 6em;
display: inline-block;
white-space: nowrap;
padding-left: 6.5em;
font-size: 3.25vw;
margin: 0.5em auto 0.5em auto;
}
header > h1 {
font-size: 3em;
color: black;
}
p:not(:last-of-type) {
margin-bottom: 1em;
}
footer {
font-size: 0.9em;
}
/* Prevent wrapping */
#lock {
margin-left: -24px;
}
.lock-label {
float: left;
width: 10%;
margin-left:18px;
}
@media screen and (min-width: 480px) {
header {
font-size: 1em;
}
}