-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (62 loc) · 1.62 KB
/
Copy pathindex.html
File metadata and controls
64 lines (62 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bit of Mind</title>
<meta name="description" content="Bit of Mind">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Michroma&family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<style>
:root { --ink: #ffffff; }
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0;
background: #0e0e0e url("bg.jpg") center center / cover no-repeat;
font-family: Roboto, Helvetica, Arial, sans-serif;
font-weight: 300;
color: var(--ink);
min-height: 100svh;
display: flex;
flex-direction: column;
}
header {
padding: 22px 24px;
}
.site-title {
margin: 0;
font-family: Michroma, sans-serif;
font-weight: 400;
font-size: clamp(20px, 4.2vw, 40px);
letter-spacing: 0.02em;
line-height: 1.2;
}
.site-title a {
color: var(--ink);
text-decoration: none;
border-bottom: 2px solid transparent;
transition: border-color 0.25s;
}
.site-title a:hover,
.site-title a:focus-visible { border-bottom-color: var(--ink); }
main { flex: 1; }
footer {
padding: 18px 24px;
font-size: 13px;
color: rgba(255, 255, 255, 0.65);
}
@media (prefers-reduced-motion: reduce) {
* { transition: none !important; }
}
</style>
</head>
<body>
<header>
<h1 class="site-title"><a href="/">Bit of Mind</a></h1>
</header>
<main></main>
<footer></footer>
</body>
</html>