-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (102 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>good not good</title>
</head>
<body>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 300;
margin: 24px 10%;
background-color: #ffffff;
letter-spacing: 1px;
}
h1,
h2,
p {
margin-top: 12px;
margin-bottom: 12px;
}
h1 {
font-size: 36px;
margin-bottom: 6px;
}
li {
margin-bottom: 18px;
}
li > h2 {
margin-bottom: 0;
}
li > p {
margin-top: 0;
}
li > p:not(:last-of-type) {
margin-bottom: 0;
}
ul {
padding: 0 0 18px 0;
list-style: none;
}
img {
display: block;
max-width: 100%;
max-height: 100%;
}
hr {
display: block;
color: rgba(0, 0, 0, 0.6);
margin-bottom: 24px;
}
.wrapper {
margin: auto;
max-width: 600px;
}
.subtitle {
margin-bottom: 12px;
}
.center {
text-align: center;
}
</style>
<div class="wrapper">
<h1>good / not good</h1>
<p class="subtitle">things that are good. things that are not good.</p>
<hr />
<ul>
<li>
<h2>garbage waffle squirrel</h2>
<p>november 22, 2024</p>
<p>good (hana again)</p>
<img src="./images/garbage-squirrel.jpg" />
</li>
<li>
<h2>ahhh lady w tree torso</h2>
<p>november 19, 2024</p>
<p>good</p>
<img src="./images/lady.jpg" />
</li>
<li>
<h2>window squirrel</h2>
<p>january 3, 2024</p>
<p>good (thnx hana)</p>
<img src="./images/window-squirrel.jpeg" />
</li>
<li>
<h2>window waffle</h2>
<p>january 19, 2020</p>
<p>good</p>
<img src="./images/winow-waffle.jpg" />
</li>
</ul>
<p class="center">
made with ♡ by
<a href="https://trevorlitsey.com" target="_blank">trbr itsy</a>.
</p>
</div>
</body>
</html>