-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (166 loc) · 4.36 KB
/
index.html
File metadata and controls
190 lines (166 loc) · 4.36 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Niclas Jeppsson — Indie Developer</title>
<style>
:root {
--bg: #0f172a;
--surface: #1e293b;
--surface-alt: #273449;
--border: #334155;
--text: #e2e8f0;
--text-muted: #94a3b8;
--accent: #38bdf8;
--accent-hover: #0ea5e9;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
margin: 0;
padding: 0;
background: var(--bg);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
}
.container {
max-width: 860px;
margin: 0 auto;
padding: 3rem 1.5rem;
}
header {
text-align: center;
padding: 2rem 0 3rem;
border-bottom: 1px solid var(--border);
margin-bottom: 3rem;
}
header h1 {
font-size: 2.25rem;
font-weight: 700;
margin: 0 0 0.5rem;
letter-spacing: -0.02em;
}
header .tagline {
color: var(--text-muted);
font-size: 1.05rem;
margin: 0;
}
section > h2 {
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin: 0 0 1.5rem;
}
article {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
margin-bottom: 1.5rem;
transition: border-color 0.2s ease, transform 0.2s ease;
}
article:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
article:last-child {
margin-bottom: 0;
}
article h3 {
font-size: 1.5rem;
font-weight: 600;
margin: 0 0 1rem;
letter-spacing: -0.01em;
}
article h4 {
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--accent);
margin: 1.25rem 0 0.5rem;
}
article p {
color: var(--text-muted);
margin: 0 0 1rem;
}
.app-link {
display: inline-block;
margin-top: 0.5rem;
padding: 0.65rem 1.25rem;
background: var(--accent);
color: var(--bg);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 0.95rem;
transition: background 0.2s ease;
}
.app-link:hover {
background: var(--accent-hover);
}
footer {
text-align: center;
margin-top: 4rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
color: var(--text-muted);
font-size: 0.9rem;
}
footer a {
color: var(--accent);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.container {
padding: 2rem 1rem;
}
header h1 {
font-size: 1.75rem;
}
article {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Niclas Jeppsson</h1>
<p class="tagline">Indie Developer</p>
</header>
<main>
<section>
<h2>Apps</h2>
<article>
<h3>Linear Algebra Visualizer</h3>
<h4>Privacy Policy</h4>
<p>Linear Algebra Visualizer doesn't log or share your personal information. We don't track you. We don't profile you.</p>
</article>
<article>
<h3>DiskDevPro</h3>
<h4>Privacy Policy</h4>
<p>DiskDevPro doesn't log or share your personal information. We don't track you. We don't profile you.</p>
<a class="app-link" href="https://apps.apple.com/gb/app/diskdevpro/id6447977360?mt=12">View on Mac App Store</a>
</article>
</section>
</main>
<footer>
<p>For support, contact <a href="mailto:niclasjeppsson@gmail.com">niclasjeppsson@gmail.com</a></p>
</footer>
</div>
</body>
</html>