Skip to content

Commit 0721104

Browse files
committed
Improve responsiveness; use separate assets for the co-organizers
1 parent 2ad46a2 commit 0721104

File tree

4 files changed

+105
-27
lines changed

4 files changed

+105
-27
lines changed

index.html

Lines changed: 23 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,60 +9,56 @@
99
<style>
1010
body {
1111
background-color: #FFF9F2;
12-
color: #7C5E3B;
13-
font-size: 24px;
12+
background-image: url('./static/background.png');
13+
background-size: cover;
1414
}
1515
.hero-content {
1616
background-image: url('./static/hero-bg.png');
1717
}
18+
1819
</style>
1920
<link rel="icon" href="favicon.ico" type="image/x-icon">
2021
</head>
2122
<body>
22-
<div class="min-h-screen" style="background-image: url('./static/background.png');">
23+
<div class="min-h-screen">
2324
<main>
2425
<section id="hero" class="text-white text-center flex items-center pt-20">
2526
<div class="container mx-auto px-6 bg-cover w-[959.82px] hero-content">
2627
<div class="flex flex-col items-center space-y-8">
2728
<!-- kliN.png - smaller -->
28-
<img src="./static/kliN.png" alt="kliN" class="w-[189px] h-auto">
29+
<img src="./static/kliN.png" alt="kliN" class="lg:w-[189px] h-auto">
2930

3031
<!-- kalinga.png - smaller -->
31-
<img src="./static/kalinga.png" alt="Kalinga" class="w-[336.34px] h-auto">
32+
<img src="./static/kalinga.png" alt="Kalinga" class="lg:w-[336.34px] h-auto">
3233

3334
<!-- pythonasia2026.png - larger -->
34-
<img src="./static/pythonasia2026.png" alt="PythonAsia 2026" class="w-[635px] h-auto">
35+
<img src="./static/pythonasia2026.png" alt="PythonAsia 2026" class="lg:w-[635px] h-auto">
3536

36-
<div class="text-center text-[#7C5E3B] z-30">
37-
Nurturing a community of care, compassion, and growth.<br/>
38-
The same heart of PyCon APAC, now as PythonAsia.
37+
<div class="text-center text-[#7C5E3B] z-30 text-lg lg:text-2xl">
38+
Nurturing a community of care, compassion, and growth.
39+
The same heart of <b>PyCon APAC</b>, now as <b>PythonAsia</b>.
3940
</div>
4041
</div>
4142
</div>
4243
</section>
4344

4445
</main>
4546

46-
<footer class="relative w-full h-[950px] mt-[-20px] z-0 hidden md:block">
47-
<!-- Left snake -->
48-
<img src="./static/pytonio.svg" alt="Left Snake"
49-
class="absolute left-0 bottom-80 w-[670px]">
50-
51-
<!-- Right snake -->
52-
<img src="./static/pytria.svg" alt="Right Snake"
53-
class="absolute right-0 bottom-80 w-[670px]">
54-
55-
<!-- Pot (centered) -->
56-
<img src="./static/pot.svg" alt="Pot"
57-
class="absolute bottom-80 left-1/2 ml-[-70px] -translate-x-1/2 w-[574.49px] z-10">
47+
<footer class="relative w-full h-[800px] lg:h-[950px] lg:mt-[-20px] z-0">
48+
<img src="./static/pytonio.svg" alt="Left Snake" class="absolute left-0 bottom-80 w-[670px] hidden lg:block">
49+
<img src="./static/pytria.svg" alt="Right Snake" class="absolute right-0 bottom-80 w-[670px] hidden lg:block">
50+
<img src="./static/pot.svg" alt="Pot" class="absolute bottom-80 left-1/2 lg:ml-[-70px] -translate-x-1/2 w-[500px] lg:w-[574.49px] z-10">
51+
<img src="./static/base.svg" alt="Bottom Base" class="absolute bottom-0 left-0 right-0 lg:w-full z-0 hidden lg:block">
5852

59-
<img src="./static/base.svg" alt="Bottom Base"
60-
class="absolute bottom-0 left-0 right-0 w-full z-0">
61-
62-
<div class="absolute bottom-40 w-full text-center z-30">
63-
<h3 class="text-white font-bold">CO-ORGANIZED BY</h3>
64-
<img class="mx-auto h-[100px]" src="./static/coorganizers.png">
53+
<div class="absolute bottom-0 lg:bottom-20 w-full text-center flex flex-col items-center justify-center z-30 py-6 bg-[#F26D1D] lg:bg-[unset]">
54+
<h3 class="text-white font-bold mb-2 text-2xl">CO-ORGANIZED BY</h3>
55+
<div class="flex flex-col md:flex-row items-center justify-center md:space-x-8 space-y-4 md:space-y-0 mt-2">
56+
<img src="./static/pythonph.svg" alt="PythonPH" class="h-12 md:h-[60px]">
57+
<img src="./static/pythonasia.svg" alt="Python Asia Organization" class="h-12 md:h-[60px]">
58+
<img src="./static/dlsu.svg" alt="DLSU" class="h-12 md:h-[60px]">
59+
</div>
6560
</div>
61+
6662
</footer>
6763
</body>
6864
</html>

static/dlsu.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)