-
Notifications
You must be signed in to change notification settings - Fork 1
/
honey-and-cashews.html
98 lines (77 loc) · 1.21 KB
/
honey-and-cashews.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Honey and cashews</title>
<meta name="description" content="A poem">
<style>
body {
background-color: hsl(42, 87%, 89%);
color: black;
font-family: system-ui, sans-serif;
line-height: 1.5;
margin: 1em;
}
@media (prefers-color-scheme: dark) {
body {
color: hsl(42, 87%, 89%);
background-color: hsl(42, 27%, 3%);
}
}
@media (width > 40em) {
body {
margin-inline: 4em;
}
}
main {
min-height: calc(99svh - 2em);
display: flex;
flex-direction: column;
justify-content: space-between;
}
main div {
padding-top: 1rem;
}
p {
margin-block: 1.5rem;
}
header h2 {
margin-block-end: 0.2em;
span {
background-color: #ffede5;
color: black;
}
}
header p {
margin-block-start: 0;
margin-inline: 0.07rem;
opacity: 0.7;
font-style: italic;
font-family: serif;
}
</style>
</head>
<body>
<main>
<div>
<p>
He is very beautiful<br>
Your dog is<br>
</p>
<p>
Do they eat<br>
Honey and cashews?<br>
</p>
</div>
<header>
<h2>Honey and <span>cashews</span></h2>
<p>
<small>
October 2022<br>
</small>
</p>
</header>
</main>
</body>
</html>