-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (70 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
76 lines (70 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Homepage for atirado.net, featuring a commitment to clear communication.">
<title>atirado.net</title>
<style>
:root {
color-scheme: light;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.6;
background: #f7f7f7;
color: #1f1f1f;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 2rem;
}
main {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 12px;
max-width: 720px;
width: 100%;
padding: 2.5rem;
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
h1 {
margin-top: 0;
font-size: 2rem;
letter-spacing: -0.02em;
}
p {
margin: 0 0 1rem;
font-size: 1.05rem;
}
blockquote {
margin: 1.5rem 0;
padding: 1rem 1.25rem;
border-left: 4px solid #1f1f1f;
background: #fafafa;
font-size: 1.1rem;
font-style: italic;
}
cite {
display: block;
margin-top: 0.5rem;
font-size: 0.95rem;
font-style: normal;
color: #555555;
}
</style>
</head>
<body>
<main>
<h1>atirado.net</h1>
<p>A place for clear ideas, stated plainly.</p>
<blockquote>
“Everything that can be said can be said clearly.”
<cite>— Ludwig Wittgenstein</cite>
</blockquote>
<p>More to come.</p>
</main>
</body>
</html>