-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (119 loc) · 3.94 KB
/
index.html
File metadata and controls
121 lines (119 loc) · 3.94 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
<html>
<head>
<title>hello! | DJ Ambrisco</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=Mona+Sans:ital,wdth,wght@0,75..125,200..900;1,75..125,200..900&display=swap" rel="stylesheet">
<link rel="icon" sizes="192x192" href="/dambrisco.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="theme-color" content="#333">
<style type="text/css">
/*=== Modern Reset ===*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -moz-text-size-adjust: none; -webkit-text-size-adjust: none; text-size-adjust: none; }
body { min-height: 100dvh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
h1 { font-size: 1.5em; font-weight: bold; margin: 0 0 1.2em; text-wrap: balance; }
h2 { font-size: 1.2em; font-weight: bold; margin: 0 0 1em; text-wrap: balance; }
h3 { font-size: 1.1em; margin: 0 0 .8em; text-wrap: balance; }
h4 { font-size: 1em; margin: 0 0 1em; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: inherit; font-weight: inherit; }
ul { list-style-type: none; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
img, fieldset { border: 0 none; }
/*=== End Reset ===*/
::selection {
background: rgba(0, 0, 0, 0.3);
text-shadow: none;
}
body {
color: #444;
font-size: 0.875rem;
font-family: "Mona Sans", Helvetica, Arial, sans-serif;
padding: clamp(1rem, 3vw, 2.5rem);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(0, rgba(77,193,204,1) 0%,rgba(32,178,191,1) 100%);
}
a {
color: #26a4af;
}
h1 { color: #666; font-weight: bold; letter-spacing: -0.5px; margin: 0 0 0.75em; }
h2 { color: #666; margin: 0 0 0.5em; font-weight: 600; }
h2:not(:first-child) {
margin-top: 1em;
}
p { margin: 1.3em 0 0; }
.section {
margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
padding: clamp(1rem, 3vw, 1.75rem);
width: min(30em, 100%);
background-color: #F0F3F2;
border-radius: 3px;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
text-shadow: 1px 1px 0px #FFF;
overflow: hidden;
}
h2:has(+ .subheading) {
margin-bottom: -0.25em;
}
.subheading {
color: #999;
font-style: italic;
font-size: 0.9em;
margin-top: 0;
margin-bottom: 0.5em;
}
.section:last-child {
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="section" id="about">
<h1 id="name">DJ Ambrisco</h1>
<h2>About me</h2>
<ul>
<li>technical leader</li>
<li>systems thinker</li>
<li>early adopter</li>
<li>programming polyglot</li>
</ul>
<h2>Elsewhere</h2>
<ul>
<li><a href="https://github.com/dambrisco">github</a></li>
<li><a href="https://www.linkedin.com/in/dambrisco">linkedin</a></li>
</ul>
</div>
<div class="section" id="preferences">
<h2>Preferences</h2>
<p class="subheading">in no particular order</p>
<ul>
<li>vscode</li>
<li>warp</li>
<li>osx</li>
<li>coffee</li>
<li>spaces, unless dictated by standard</li>
</ul>
</div>
<div class="section" id="languages">
<h2>Languages</h2>
<p class="subheading">in a somewhat particular order</p>
<ul>
<li>Go</li>
<li>Rust</li>
<li>Typescript/Javascript</li>
<li>Elixir</li>
<li>Ruby</li>
<li>Python</li>
<li>C#</li>
<li>Java</li>
</ul>
</div>
</body>
</html>