forked from LessWrong2/lighthaven
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
174 lines (153 loc) · 4.29 KB
/
index.html
File metadata and controls
174 lines (153 loc) · 4.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="LessOnline 2026 — Save the Date">
<meta property="og:description" content="June 5–7, 2026 | Lighthaven, Berkeley CA">
<meta property="og:image" content="https://res.cloudinary.com/lesswrong-2-0/image/upload/c_fill,w_1200,h_630/v1770764629/LessOnline/Screenshot_2026-02-10_at_3.02.53_PM_vi31er.png">
<meta property="og:url" content="https://less.online/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="LessOnline 2026 — Save the Date">
<meta name="twitter:description" content="June 5–7, 2026 | Lighthaven, Berkeley CA">
<meta name="twitter:image" content="https://res.cloudinary.com/lesswrong-2-0/image/upload/c_fill,w_1200,h_630/v1770764629/LessOnline/Screenshot_2026-02-10_at_3.02.53_PM_vi31er.png">
<link rel="shortcut icon" type="image/jpg" href="/public/LessOnlineLogo.png" />
<title>LessOnline 2026</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--accent: #a8adb4;
--accent-light: #c5c9cf;
--accent-dark: #8a8f96;
}
body {
font-family: Georgia, "Times New Roman", serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(ellipse 80% 60% at 50% 40%, #151719 0%, #0b0c0e 50%, #050506 100%);
color: #ece8e2;
padding: 32px;
}
.page {
width: 100%;
max-width: 640px;
text-align: center;
}
.label {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 6px;
color: var(--accent);
margin-bottom: 36px;
}
h1 {
font-size: 78px;
font-weight: normal;
letter-spacing: 0.8px;
line-height: 1.05;
margin-bottom: 36px;
}
h1 .year {
color: var(--accent-dark);
}
.event-meta {
margin: 0 auto 36px;
padding: 0 20px;
max-width: 560px;
}
.date {
font-family: Arial, Helvetica, sans-serif;
font-size: 36px;
font-weight: 800;
letter-spacing: 0.6px;
color: var(--accent-light);
margin-bottom: 10px;
}
.location {
font-family: Georgia, "Times New Roman", serif;
font-size: 20px;
font-weight: 400;
color: var(--accent);
font-style: italic;
}
.description {
font-size: 18px;
line-height: 1.65;
color: var(--accent-dark);
margin-bottom: 48px;
}
.cta {
display: inline-block;
padding: 16px 40px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: #111315;
background: var(--accent);
border: none;
border-radius: 2px;
text-decoration: none;
transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.cta:hover {
transform: translateY(-1px);
background: var(--accent-light);
box-shadow: 0 4px 20px rgba(168, 173, 180, 0.15);
}
.cta:active {
transform: translateY(0);
}
.past {
margin-top: 48px;
font-size: 13px;
}
.past a {
color: var(--accent-dark);
text-decoration: none;
transition: color 0.2s;
}
.past a:hover {
color: var(--accent);
}
@media (max-width: 640px) {
h1 {
font-size: 52px;
}
.label {
font-size: 13px;
letter-spacing: 5px;
}
.date {
font-size: 28px;
}
.location {
font-size: 18px;
}
.description {
font-size: 17px;
}
}
</style>
</head>
<body>
<div class="page">
<p class="label">Save the Date</p>
<h1>LessOnline<span class="year">2026</span></h1>
<div class="event-meta">
<p class="date">June 5 – 7</p>
<p class="location">Lighthaven · Berkeley, CA</p>
</div>
<p class="description">
A festival for truthseeking and blogging.
</p>
<a href="/subscribe" class="cta">Subscribe for updates</a>
<p class="past"><a href="/2025">LessOnline 2025</a></p>
</div>
</body>
</html>