Skip to content

Commit d9c7361

Browse files
committed
Add beer and pizza
1 parent 9c2c6bc commit d9c7361

1 file changed

Lines changed: 112 additions & 2 deletions

File tree

index.html

Lines changed: 112 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,84 @@
113113
/* Italic style for "Opening the Browser, Together" */
114114
font-style: italic;
115115
font-size: 1.2em;
116-
line-height: 0.8;
117116
}
118117

118+
.promo-section {
119+
background-color: #4c1d95; /* bg-indigo-900 */
120+
padding: 2rem 0; /* py-8 */
121+
color: white; /* text-white */
122+
}
123+
124+
.promo-container {
125+
max-width: 80rem; /* max-w-7xl */
126+
margin: 0 auto; /* mx-auto */
127+
padding: 0 1rem; /* px-4 */
128+
}
129+
130+
@media (min-width: 640px) {
131+
.promo-container {
132+
padding: 0 1.5rem; /* sm:px-6 */
133+
}
134+
}
135+
136+
@media (min-width: 1024px) {
137+
.promo-container {
138+
padding: 0 2rem; /* lg:px-8 */
139+
}
140+
}
141+
142+
.promo-content {
143+
display: flex;
144+
flex-direction: column; /* flex-col */
145+
align-items: center; /* items-center */
146+
justify-content: center; /* justify-center */
147+
gap: 2rem; /* gap-8 */
148+
text-align: center; /* text-center */
149+
}
150+
151+
@media (min-width: 768px) {
152+
.promo-content {
153+
flex-direction: row; /* md:flex-row */
154+
text-align: left; /* md:text-left */
155+
}
156+
}
157+
158+
.promo-item {
159+
display: flex; /* flex */
160+
align-items: center; /* items-center */
161+
gap: 0.75rem; /* gap-3 */
162+
}
163+
164+
.promo-operator {
165+
display: none; /* hidden */
166+
font-size: 2.25rem; /* text-4xl */
167+
font-weight: bold; /* font-bold */
168+
}
169+
170+
@media (min-width: 768px) {
171+
.promo-operator {
172+
display: block; /* md:block */
173+
}
174+
}
175+
176+
.promo-text {
177+
font-size: 1.5rem; /* text-2xl */
178+
font-weight: bold; /* font-bold */
179+
}
180+
181+
.promo-result {
182+
font-size: 1.5rem; /* text-2xl */
183+
font-weight: bold; /* font-bold */
184+
}
185+
186+
.beer-icon {
187+
color: #fbbf24; /* text-amber-400 */
188+
}
189+
190+
.pizza-icon {
191+
color: #f87171; /* text-red-400 */
192+
}
193+
119194
.event-section {
120195
padding: 4.25rem 1rem;
121196
max-width: 80rem;
@@ -330,15 +405,50 @@
330405
<img class="logo" src="./logo.svg" alt="browseRus Logo" />
331406
<div class="header">
332407
<h1 class="title">Browser Night <span class="v0">#{0}</span></h1>
333-
<p class="italic">Opening the Browser, Together!</p>
408+
<p class="italic">
409+
Opening the Browser, Together! <br />
410+
Grab some 🍕 pizza, drink some 🍺 beer, and talk code!
411+
</p>
334412
<p>Hosted by browseRus</p>
335413
<a
336414
href="https://docs.google.com/forms/d/e/1FAIpQLSdQXEIzIon43Z5JPTSt7hjjDSspXA9G1st_RfW6IoV5bLDISQ/viewform?usp=header"
337415
class="cta-button"
338416
>등록 하러 가기</a
339417
>
340418
</div>
419+
</div>
341420

421+
<section class="promo-section">
422+
<div class="promo-container">
423+
<div class="promo-content">
424+
<div class="promo-item">
425+
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="beer-icon">
426+
<path d="M17 11h1a3 3 0 0 1 0 6h-1"></path>
427+
<path d="M9 12v6"></path>
428+
<path d="M13 12v6"></path>
429+
<path d="M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"></path>
430+
<path d="M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"></path>
431+
</svg>
432+
<span class="promo-text">Beer</span>
433+
</div>
434+
<div class="promo-operator">+</div>
435+
<div class="promo-item">
436+
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="pizza-icon">
437+
<path d="M15 11h.01"></path>
438+
<path d="M11 15h.01"></path>
439+
<path d="M16 16h.01"></path>
440+
<path d="m2 16 20 6-6-20A20 20 0 0 0 2 16"></path>
441+
<path d="M5.71 17.11a17.04 17.04 0 0 1 11.4-11.4"></path>
442+
</svg>
443+
<span class="promo-text">Pizza</span>
444+
</div>
445+
<div class="promo-operator">=</div>
446+
<div class="promo-result">Good Times!</div>
447+
</div>
448+
</div>
449+
</section>
450+
451+
<div class="container">
342452
<section class="event-section">
343453
<div class="event-grid">
344454
<div class="event-card">

0 commit comments

Comments
 (0)