-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (77 loc) · 996 Bytes
/
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
body {
font-family: Segoe UI;
background: #3973aa;
color: #fefeff;
height: 100vh;
margin: 0;
}
#page {
display: table;
height: 100%;
margin: 0 auto;
margin-top: -10px;
width: 70%;
font-size: 1.9vw;
}
#container {
display: table-cell;
vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5 {
font-weight: normal;
padding: 0;
margin: 25px 0;
margin-top: 0;
font-weight: 300;
}
h1 {
font-size: 6rem;
margin-bottom: 10px;
}
h2 {
font-size: 21px;
}
h4 {
font-size: 18px;
line-height: 1.5em;
}
h5 {
line-height: 22px;
font-size: 14px;
font-weight: 400;
}
#details {
display: flex;
flex-flow: row;
flex-wrap: nowrap;
padding-top: 10px;
}
#qr {
flex: 0 1 auto;
}
#image {
background: white;
padding: 5px;
line-height: 0;
}
#image img {
width: 9.8em;
height: 9.8em;
}
#stopcode {
padding-left: 10px;
flex: 1 1 auto;
}
@media (min-width: 840px) {
#page {
font-size: 140%;
width: 800px;
}
}
a {
color: #e1f0ff;
}