blob: b16353eaca411f00d21de9143e172ec7a82431f0 (
plain) (
blame)
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
|
/*
a:link {
color: #0077AA;
}
a:visited {
color: #941352;
}
*/
.code, pre, code { font-family: Consolas, Monaco, monospace; }
.sans-serif { font-family: "Noto Sans", sans-serif; }
.serif { font-family: "Noto Serif", Georgia, Times, serif; }
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6em;
font-size: 1.125em;
font-family: sans-serif;
color: #444;
background-color: #EEE;
padding: 0 10px;
}
h1,h2,h3 {
line-height: 1.2;
}
a {
color: #0077AA;
}
.veral {
vertical-align: bottom;
}
#contact {
margin-top: 40px;
border: 2px solid #444;
border-radius: 15px;
padding-left: 1em;
padding-right: 1em;
}
@media only screen and (max-width: 650px) {
body {
margin: 20px auto;
font-size: 1em;
}
}
|