-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (73 loc) · 2.7 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
<!doctype html>
<html>
<head>
<title>
Random Thoughts
</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/typo.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/assets/css/pygments.css" type="text/css" media="screen" />
<style>
.post-container{ padding:3% 7%; position:relative; margin-bottom:1em; background:#fff; }
.post-preview{ max-height:70em; overflow:hidden; }
.post-readmore{ border: 1px solid #1abc9c; width: fit-content; padding:0 0.5em; margin-top:1em; }
#index-nav { text-align: center; }
#prev-index-page, #next-index-page { border: 1px solid #1abc9c; width: fit-content; padding:0 0.5em; margin:0.5em; display:inline; }
</style>
<style>
html{ background:#eee; }
body{ width:90%; max-width:960px; margin:3em auto 0; padding-top:2em; }
pre{white-space:pre-wrap;}
.page-header{ margin-top: -3.5em; }
.nav-left {list-style-type: none; margin: 0; padding: 0; overflow: hidden; }
.nav-left li {float: left;}
.nav-left .nav-home {font-size: 2em; font-weight: bold; margin-top:-0.3em}
.nav-left .nav-item {padding:0.5em;}
.nav-right {list-style-type: none; padding: 0; overflow: hidden; margin-top:-2.5em; margin-bottom:1em;}
.nav-right li{float: right;}
@media only screen and (max-width: 640px) {
table{ word-break:break-all;word-wrap:break-word;font-size:12px; }
.typo table th, .typo table td, .typo-table th, .typo-table td .typo table caption {
padding: 0.5em;
}
#post-toc {display:none; }
.nav-left .nav-item {display:none; }
}
</style>
</head>
<body>
<div class="page-header">
<ul class="nav-left">
<li class="nav-home">
<a href="/">Random Thoughts</a>
</li>
<li class="nav-item">
<a href="/tags.html">Tags</a>
</li>
<li class="nav-item">
<a href="/page/about.html">About</a>
</li>
</ul>
<ul class="nav-right">
<li class="nav-item">
<a href="/rss.xml">RSS</a>
</li>
</ul>
</div>
<div id="index-nav">
</div>
<!-- MathJax -->
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-54158408-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-54158408-2');
</script>
</body>
</html>