-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
57 lines (49 loc) · 1.07 KB
/
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
@import url('https://cdn.jsdelivr.net/npm/cn-fontsource-lxgw-wen-kai-gb-screen/font.css');
body {
margin: 0;
background: #f8e7ce;
user-select: none;
-webkit-tap-highlight-color: transparent;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
* {
font-family: 'LXGW WenKai GB Screen' !important;
}
a {
color: white;
text-decoration: none;
}
button {
border: none;
outline: none;
display: inline-block;
color: white;
font-size: 1rem;
padding: 6px 8px;
background-color: transparent;
background-image: url('/assets/button.webp');
background-size: 100% 100%;
flex-shrink: 0;
cursor: pointer;
}
button:active {
opacity: 0.8;
}
.background {
height: 100vh;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-image: url('/assets/background.webp');
}
.box {
width: 100%;
box-sizing: border-box;
padding: 20px;
font-size: 0.9rem;
}
.box.bottom {
background: #ffffff88;
position: absolute;
bottom: 0;
}