-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
61 lines (61 loc) · 1.21 KB
/
Copy pathindex.css
File metadata and controls
61 lines (61 loc) · 1.21 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
* {
margin: 0 auto;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, "helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", Arial, sans-serif;
}
body {
background: url('/img/background.png');
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
line-height: 1.1;
}
h1{
line-height: 50px;
font-size: 2rem;
margin: 10px;
}
p{
padding: .27em 0;
line-height: 1.75;
}
.center{
background: rgba(255,255,255,0.6);
width: 400px;
height: 500px;
box-shadow: 0 0 10px #cccccc;
margin: auto;
padding: 50px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.center > img{
display: block;
margin: 10px auto 30px auto;
width: 150px;
border-radius: 50%;
}
.center > h1,.center > p,.center > .url > p{
text-align: center;
color: #888;
}
.center > .url > p{
margin: 15px;
}
.center > .url > p > a{
color: #777;
text-decoration: none;
font-size: 20px;
}
.center > .url > p > a:hover{
border-bottom: 1px dotted #777;
}
@media screen and (max-width:400px){
.center{
width: 100%;
}
}