forked from noikiy/segmentfault.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.html
More file actions
156 lines (136 loc) · 3.46 KB
/
Copy patharchives.html
File metadata and controls
156 lines (136 loc) · 3.46 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui" />
<title>SegmentFault Status</title>
<link rel="stylesheet" href="http://cdn.staticfile.org/normalize/3.0.1/normalize.min.css">
<style>
body {
font-family: monospace;
line-height: 1.5;
font-size: 13px;
}
a {
color: #008E59;
text-decoration: none;
}
a:hover {
color: #004229;
}
/* layout */
.container {
margin: 20px auto;
padding: 15px;
max-width: 800px;
}
.header {
padding: 20px 15px 6px;
text-align: center;
}
.logo img {
width: 194px;
height: 36px;
}
/* header nav */
.nav {
float: right;
color: #ddd;
}
.nav a {
margin-left: 10px;
}
/* change item */
.changelog-item {
margin: 2em 0;
}
.changelog-item time {
display: block;
padding-bottom: 5px;
font-size: 1.25em;
font-weight: bold;
}
.changelog-item time a {
color: #000;
text-decoration: underline;
}
.changelog-item time a:hover {
text-decoration: none;
}
/* change list */
.changelist {
list-style: none;
margin-left: 2em;
padding: 0;
position: relative;
}
.changelist li {
margin-bottom: 5px;
}
.bug:before,
.feature:before {
position: absolute;
left: -2em;
content: "\2714 -";
display: inline-block;
width: 2em;
color: #D0021B;
}
.feature:before {
content: "\2714 +";
color: #009a61;
}
/* page nav */
.pagenav { text-align: center; }
.pagenav a { margin: 0 10px; }
.archive-list {
padding-left: 25px;
list-style: square;
}
/* footer */
.footer {
margin-top: 50px;
padding-top: 20px;
border-top: 1px solid #ddd;
color: #999;
}
.footer a {
color: #999;
}
/* help class */
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
</style>
</head>
<body>
<header class="header clearfix">
<a href="/" class="logo"><img src="http://static.segmentfault.com/global/img/logo.svg" alt="SegmentFault Status"></a>
</header><!-- end .header -->
<div class="container">
<div class="col-main" role="main">
<h2 class="h4" id="archive-2014.09">2014.09</h2>
<ul>
<li><a href="/posts/changelog_2014-09-26.html">2014年9月26日更新</a></li>
<li><a href="/posts/changelog_2014-09-25.html">2014年9月25日更新</a></li>
<li><a href="/posts/changelog_2014-09-23.html">2014年9月23日更新</a></li>
<li><a href="/posts/changelog_2014-09-22.html">2014年9月22日更新</a></li>
<li><a href="/posts/changelog_2014-09-19.html">2014年9月19日更新</a></li>
</ul>
</div>
<footer class="footer clearfix">
<nav class="nav">
<a href="http://segmentfault.com" target="_blank">Home</a>
<a href="https://github.com/SegmentFault" target="_blank">GitHub</a>
<a href="http://weibo.com/segmentfault" target="_blank">Weibo</a>
</nav>
Powered by <a href="https://github.com/typecho/logecho">Logecho</a>
</footer>
</div>
</body>
</html>