-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (55 loc) · 894 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
@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
body {
width: 100vw;
height: 100vh;
overflow: hidden;
color: white;
font-family: 'Noto Sans CJK TC', 'Noto Sans TC', 'sans-serif';
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#bg-video {
width: 100%;
height: 100%;
border: 0;
}
#content-wrapper {
position: absolute;
z-index: 5;
text-shadow: #000 0 0 15px;
}
#content-wrapper h1 {
font-size: 5em;
}
#info {
display: flex;
flex-direction: column;
align-items: center;
}
#info h2 {
font-size: 8em;
margin: 0;
}
footer {
position: absolute;
z-index: 6;
bottom: 5px;
line-height: 130%;
text-align: center;
text-shadow: #000 2px 2px 7px;
}
footer>a {
font-weight: 800;
color: lightblue;
text-decoration: none;
}
@media (max-width: 600px) {
body {
font-size: 8px;
}
footer {
font-size: 2em;
}
}