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
|
@font-face {
font-family: Segoe UI;
src:
local("Segoe UI Light"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype");
font-weight: 100;
}
@font-face {
font-family: Segoe UI;
src:
local("Segoe UI Semilight"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
font-weight: 200;
}
@font-face {
font-family: Segoe UI;
src:
local("Segoe UI"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"),
url(https://c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Segoe UI Light";
font-weight: 300;
}
body {
font-family: "Segoe UI";
color: #FFF;
background: #106faa;
margin: 0;
}
a {
color: #CCC;
}
a:visited {
color: #CCC;
}
main {
margin: 5% 8%;
margin-right: 30%;
}
.emotion {
font-family: "Segoe UI";
font-size: 8em;
margin: 0;
}
.description {
font-size: 1.4em;
margin-bottom: 3em;
}
footer small {
font-size: 0.8em;
}
|