-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (127 loc) · 3.57 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<title>DeleiGuo Blog</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta content="" />
<meta content="" name="deleiguo" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="bootstrap-grid.min.css" />
<style type="text/css">
@font-face {
font-family: 'Lato';
src: url("font/lato-light.woff2") format('woff2'), url("font/lato-light.ttf") format('truetype'), url("font/lato-light.woff") format('woff');
font-weight: normal;
font-style: normal;
}
html,
body {
padding: 0;
margin: 0;
}
.dg-bg-black {
background-color: #000000;
}
.dg-bg-grey {
background-color: #f7f7f7;
}
.dg-site-name {
color: #fff;
font-family: 'Lato', sans-serif;
font-size: 3rem;
font-weight: 300;
letter-spacing: 5px;
line-height: 1;
padding-top: 0px;
margin: 15px 0;
text-transform: uppercase;
text-align: center;
}
.dg-site-desc {
color: #666;
font-family: sans-serif;
margin: 0px;
letter-spacing: 2px;
font-size: 14px;
text-align: center;
}
.dg-title {
font-size: 16px;
font-weight: 200;
color: #FF1111;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dg-image {
display: flex;
align-items: center;
justify-content: center;
border: 0;
margin: 0;
padding: 20px 0;
height: 400px;
vertical-align: middle;
}
.dg-image img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
vertical-align: middle;
align-items: center;
}
.dg-header {
height: 200px;
background-image: url(animated-shape.svg);
background-repeat: no-repeat;
background-position: center;
}
.dg-content {
margin-top: 15px;
padding: 15px 20px;
text-align: center;
border-radius: 12px;
box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
}
.dg-footer {
padding: 20px;
color: #909099;
font-size: 14px;
font-weight: 200;
text-align: center;
}
.dg-footer a {
text-decoration: none;
color: #909099;
}
</style>
</head>
<body>
<div class="container-fluid dg-header dg-bg-black">
<div style="padding-top:50px">
<h1 class="dg-site-name">DeleiGuo</h1>
<h3 class="dg-site-desc">Target、Focus、Patient</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="dg-content dg-bg-grey">
<div class="dg-image">
<img src="office.png" />
</div>
<h1 class="dg-title"> 思考 | 整理 | 重构 </h1>
<h1 class="dg-title">自2021年起始,小站将重新出发, 正在装潢中...</h1>
</div>
</div>
</div>
</div>
<div class="container dg-footer">
<span>© 2021 DeleiGuo<span>
<span style="margin-left:20px"><a href="https://beian.miit.gov.cn/" target=_blank>湘ICP备16012107号</a></span>
</div>
</body>
</html>