-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (120 loc) · 2.77 KB
/
Copy pathindex.html
File metadata and controls
150 lines (120 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en-us" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Caloni</title>
<meta name="author" content="Caloni" />
<link rel="stylesheet" type="text/css" href="/blog/css/custom.css"/>
<link rel="icon" href="/blog/img/favicon.ico"/>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: white;
color: #222;
}
.container {
text-align: center;
max-width: 640px;
padding: 2em;
}
h1 {
font-size: 3em;
margin-bottom: 0.2em;
font-weight: 600;
}
.tagline {
font-size: 1.2em;
color: #666;
margin-bottom: 2.5em;
}
.section {
margin-top: 2em;
}
.section-title {
font-size: 0.9em;
letter-spacing: 0.08em;
color: #888;
text-transform: uppercase;
margin-bottom: 0.8em;
}
.links a {
display: inline-block;
margin: 0.4em;
padding: 0.6em 1.2em;
background-color: firebrick;
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 1em;
transition: background-color 0.2s ease;
}
.links a:hover {
background-color: darkred;
}
.secondary a {
background-color: #555;
}
.secondary a:hover {
background-color: #333;
}
.footer {
margin-top: 3em;
font-size: 0.9em;
color: #999;
}
.footer a {
color: #777;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Caloni</h1>
<div class="tagline">
Write for computers, people and food.
</div>
<div class="section">
<div class="section-title">Start here</div>
<div class="links">
<a href="/blog/programming.html">Programming</a>
<a href="/blog/reversing.html">Reversing</a>
<!-- TODO Add more categories in the blog. Each one should
introduce the essential posts and give the reader a
searchable list for all texts.
<a href="/blog/english.html">English posts</a>
<a href="/blog/writing/">Writing</a>
<a href="/blog/cinema/">Cinema</a>
<a href="/blog/food/">Food</a>
<a href="/blog/self/">Self</a>
-->
</div>
</div>
<div class="section">
<div class="section-title">Explore</div>
<div class="links secondary">
<a href="/blog/">All blog posts</a>
</div>
</div>
<div class="section">
<div class="section-title">Archive</div>
<div class="links secondary">
<a href="/journal/">Journal</a>
</div>
</div>
<div class="footer">
2005-
</div>
</div>
</body>
</html>