-
Notifications
You must be signed in to change notification settings - Fork 0
/
verse.html
58 lines (54 loc) · 1.33 KB
/
verse.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
<!doctype html>
<html>
<head>
<title>Ring Verse</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
@media (prefers-color-scheme: dark) {
body {
color: white;
background: black;
font-weight: bold;
}
}
.collapse-spacing * {
margin: 0;
padding: 0;
}
.bold { font-weight: bolder }
.align-right { text-align: right }
/* centers content vertically */
body, html {
display: grid;
height: 100%;
& > * {
margin: auto;
}
}
a {
color: unset;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
</style>
</head>
<body>
<div>
<div class="collapse-spacing">
<p>There is no fear in love,
<p>but perfect love casts out fear.
<p>For fear has to do with punishment,
<p>and whoever fears has not been perfected in love.
<p>We love because he first loved us.
</div>
<p class="bold align-right" >
<a href="https://www.bibleref.com/1-John/4/1-John-4-18.html" target="_blank">
1 John 4:18-19 (ESV)
</a>
</p>
<!-- This verse is printed on the inside on Ben's ring -->
</div>
</body>
</html>