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
|
body {
margin: 0;
padding: 0;
color: #424242;
background-color: #f9f9f9;
font-family: 'PT Sans', Arial, Helvetica, sans-serif;
font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
color: #ff685b;
font-family: 'PT Sans Narrow', 'Arial Narrow', Arial, Helvetica, sans-serif;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.layout {
margin: 0 auto;
width: 100%;
max-width: 640px;
min-width: 240px;
min-height: 100vh;
background-color: #fff;
}
.header .pokepi {
width: 240px;
height: 240px;
user-select: none;
}
.header .brand {
float: right;
user-select: none;
margin: 18px;
font-size: 16px;
font-family: 'PT Mono', 'Courier New', Courier, monospace;
}
.header .brand .letter {
display: block;
margin: 4px 0;
}
@media (max-width: 480px) {
.header .brand {
display: none; /* hide on tiny screens */
}
}
|