-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (90 loc) · 1.57 KB
/
style.css
File metadata and controls
110 lines (90 loc) · 1.57 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import url("font.css");
body {
background: rgba(0,0,0,.04);
color: rgba(0,0,0,.87);
margin: 0;
font-family: Roboto, "Noto Sans", "Noto Sans CJK SC", "Source Han Sans", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
opacity: 1;
transition: opacity 1s ease-out;
}
body.hidden {
opacity: 0;
}
a {
font-family: "Roboto Slab";
color: rgba(0,0,0,.70);
}
.brand-container {
height: 100vh;
}
.brand {
display: block;
text-align: center;
margin: 0 auto;
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
font-weight: 100;
font-size: 72px;
font-family: "Roboto Mono";
}
@media (max-width: 650px) {
.brand {
transform-origin: top;
transform: scale(0.7) translateY(-50%);
}
}
.brand .cite {
color: rgba(0,0,0,.54);
font-size: 32px;
vertical-align: sub;
font-weight: 200;
}
.brand .cite {
height: 0;
}
.container {
box-sizing: border-box;
max-width: 800px;
margin: 100px auto;
padding: 0 80px;
font-size: 18px;
line-height: 24px;
}
.footer {
box-sizing: border-box;
max-width: 800px;
margin: 100px auto 50px auto;
padding: 0 80px;
color: rgba(0,0,0,.30);
font-size: 12px;
line-height: 16px;
}
.title {
font-family: "Roboto Mono";
font-weight: 400;
font-size: 24px;
line-height: 32px;
}
.para {
margin: 25px 0;
}
.lead {
margin-bottom: 10px;
font-weight: 600;
}
.list {
list-style-type: circle;
padding-left: 0;
margin: 0;
}
.hang {
position: absolute;
top: 0;
right: 100%;
padding-right: 10px;
}
.hangbase {
position: relative;
}