-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (144 loc) · 4.41 KB
/
index.html
File metadata and controls
163 lines (144 loc) · 4.41 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>deitte.com</title>
<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=Playfair+Display:ital,wght@0,400;0,500;1,400&family=IBM+Plex+Mono:wght@300;400&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7910585-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-7910585-1');
</script>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--cream: #F4EFE4;
--ink: #261E17;
--rust: #B5622A;
--muted: #8A7A6E;
}
html, body { height: 100%; }
body {
background-color: var(--cream);
color: var(--ink);
font-family: 'IBM Plex Mono', monospace;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2rem;
}
/* Subtle grain texture */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1000;
opacity: 0.4;
}
main {
text-align: center;
max-width: 600px;
}
.intro {
font-size: 0.875rem;
font-weight: 300;
line-height: 1.7;
color: var(--ink);
text-align: left;
margin-bottom: 2.5rem;
}
.intro a {
color: var(--rust);
text-decoration: none;
}
.intro a:hover {
color: var(--rust);
}
.intro a:visited { color: var(--muted); }
.intro a:hover { color: var(--rust); }
.computer {
width: min(260px, 80vw);
height: auto;
display: block;
margin: 0 auto 2.5rem;
}
h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 6vw, 3rem);
font-weight: 400;
letter-spacing: -0.01em;
margin-bottom: 0.25rem;
}
.domain {
font-size: 0.75rem;
color: var(--muted);
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 3rem;
}
nav {
text-align: left;
}
nav ul {
list-style: none;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.85rem;
}
nav li {
font-size: 0.875rem;
font-weight: 300;
letter-spacing: 0.04em;
}
nav a {
color: var(--rust);
text-decoration: none;
font-size: 0.875rem;
font-weight: 300;
letter-spacing: 0.04em;
display: inline-flex;
align-items: center;
gap: 0.6rem;
transition: color 0.2s;
}
nav a::before {
content: '—';
color: var(--rust);
}
nav a:visited { color: var(--muted); }
nav a:hover { color: var(--rust); }
footer {
margin-top: 3.5rem;
font-size: 0.7rem;
color: var(--muted);
letter-spacing: 0.08em;
}
</style>
</head>
<body>
<main>
<img class="computer" src="content/images/2020/10/computer-3-10.23.00-PM--4-.png" alt="">
<p class="intro">Welcome to the home of Brian Deitte, Senior Director of Engineering at <a href="https://posit.co">Posit</a>. You can reach me at brian at deitte dot com.</p>
<nav>
<ul>
<li><a href="https://github.com/bdeitte">GitHub</a>, home of this website, hot-shots, and more</li>
<li><a href="https://www.linkedin.com/in/deitte/">LinkedIn</a>, where I very occassionally write now</li>
<li><a href="/blog/">Blog 2015-2020</a>, covering some leadership and tech topics</li>
<li><a href="/old_home/">Blog 2005-2011</a>, covering Flex and other tech topics</li>
<li><a href="https://nurseyournails.com/">Nurse Your Nails</a>, my wife's business</li>
</ul>
</nav>
<footer>your friendly tech home since 2001</footer>
</main>
</body>
</html>