-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.css
More file actions
52 lines (46 loc) · 850 Bytes
/
template.css
File metadata and controls
52 lines (46 loc) · 850 Bytes
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
* {
box-sizing: border-box;
outline: none;
}
a {
color: inherit;
}
body {
background-color: rgb(30, 30, 30);
color: white;
cursor: default;
font-family: Helvetica, sans-serif;
font-size: 16px;
margin: 0;
-webkit-tap-highlight-color: transparent;
}
header {
background-color: rgba(255, 255, 255, .1);
padding: 10px 15px;
-webkit-user-select: none;
user-select: none;
}
h1 {
margin: 15px 0;
}
main {
display: block;
margin: 15px;
}
.bg-img {
background-attachment: fixed;
background-image: url(https://cn.bing.com/th?id=OHR.InukshukLights_ZH-CN0756858983_1920x1080.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-filter: blur(10px);
filter: blur(10px);
height: 100%;
left: 0;
opacity: .5;
position: fixed;
top: 0;
transform: scale(1.1);
width: 100%;
z-index: -1;
}