-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (93 loc) · 2.76 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>zD98.io</title>
<link rel="stylesheet" href="/css/normalize.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans|Montserrat:700"/>
<style>
html, body {
overflow: hidden;
margin: 0;
background:#333;
width:100%;
height:100%;
}
body {
font-family: 'Open Sans', 'Helvetica Neue', 'Hiragino Sans GB', 'LiHei Pro', Arial, sans-serif;
/* background:#eee;
background-image:
linear-gradient(45deg,rgba(0,0,0,.1) 25%, transparent 0,transparent 75%, rgba(0,0,0,.1) 0),
linear-gradient(45deg,rgba(0,0,0,.1) 25%, transparent 0,transparent 75%, rgba(0,0,0,.1) 0);
background-position:0 0,15px 15px;
background-size:30px 30px;*/
position:relative;
}
.mask {
position:absolute;
width:100%;
height:100%;
background-color:#333;
background-image:url('./image/bg.jpg');
background-size: cover;
background-repeat:no-repeat;
opacity:0.4;
}
.wrap {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
margin-left: -161px;
margin-top: -131px;
}
h1 {
font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
font-weight: 700;
font-size: 48px;
letter-spacing: 9px;
text-transform: uppercase;
margin: 12px 0;
color: rgba(255,0,0,.6);
left: 4px;
}
h2 {
color: rgba(255,255,255,.8);
font-weight: normal;
font-size: 15px;
letter-spacing: .12em;
margin-bottom: 8px;
left: 3px;
}
h1, h2 {
position: relative;
}
p {
font-size: 14px;
line-height: 2em;
margin: 0;
letter-spacing: 2px;
}
a {
color: rgba(255,255,255,.8);
text-decoration: none;
transition: color .2s ease;
}
a:hover {
color: rgba(255,255,255,.6);
}
</style>
</head>
<body>
<div class="mask"></div>
<div class="wrap">
<h1> < ZD98/></h1>
<h2>Zhendong Wang</h2>
<h2>Web Front-End Designer & Developer</h2>
<p><a href="https://github.com/zD98/">GitHub</a></p>
<p><a href="/slides">WebGL Slides</a></p>
<p><a href="/blog">Blog</a></p>
<p><a href="javascript:0">Email</a></p>
</div>
</body>
</html>