Skip to content

Commit fdae108

Browse files
committed
quick updates for HB2k26
1 parent c9cf758 commit fdae108

9 files changed

Lines changed: 26 additions & 515 deletions

File tree

src/app.css

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,43 +31,33 @@ html {
3131
body {
3232
font-family: "Mulish", sans-serif;
3333
color: aliceblue;
34-
background-color: rgb(26,17,54);
35-
background-color: linear-gradient(180deg, rgba(26,17,54,1) 0%, rgba(29,20,62,1) 30%, rgba(38,31,84,1) 60%, rgba(41,39,100,1) 80%, rgba(56,51,118,1) 100%);
36-
37-
background-image: url('$lib/images/cloud.webp');
34+
background-color: #0E1D26;
35+
background-image: url('$lib/images/brown_footer.png');
3836
background-size: 100%;
3937
background-repeat: no-repeat;
4038
background-position: bottom;
4139
}
4240
}
4341

44-
.stars {
45-
background-image: url('$lib/images/star_pattern.png');
46-
background-size: 80%;
47-
background-repeat: repeat;
48-
background-blend-mode: overlay;
49-
background-attachment: fixed;
50-
}
51-
5242
.hackaburg {
53-
color: #ca70a2;
43+
color: #FABD77;
5444
}
5545

5646
.bg-hackaburg {
57-
background-color: #ca70a2;
47+
background-color: #FABD77;
5848
}
5949

6050
.glow {
61-
box-shadow: 0 0 20px -5px hsl(203, 92%, 75%, 1);
51+
box-shadow: 0 0 20px -5px hsl(48, 92%, 75%);
6252
}
6353
.glow-soft {
64-
box-shadow: 0 0 10px -5px hsl(203, 92%, 75%, .3);
54+
box-shadow: 0 0 10px -5px hsla(46, 92%, 75%, 0.3);
6555
}
6656

6757
.glow:hover {
68-
box-shadow: 0 0 30px 10px hsla(340, 57%, 64%, .5);
58+
box-shadow: 0 0 30px 10px hsla(27, 57%, 64%, 0.5);
6959
}
7060

7161
.glow-soft:hover {
72-
box-shadow: 0 0 20px 10px hsla(340, 57%, 64%, .3);
62+
box-shadow: 0 0 20px 10px hsla(13, 57%, 64%, 0.3);
7363
}

src/lib/images/brown_footer.png

426 KB
Loading

src/lib/images/hackaburg.svg

Lines changed: 1 addition & 483 deletions
Loading

src/routes/+page.svelte

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@
2222
<div class="container mx-auto">
2323
<Hero />
2424
<!-- <Timeline />-->
25-
<Schedule />
26-
<!-- <Workshops />
25+
<!-- <Schedule />
26+
<Workshops />
2727
<Challenges />
2828
<Hardware />
29-
-->
30-
<Supporters />
31-
<!--
29+
<Supporters />#
3230
<Team />
3331
-->
3432
<Behind />

src/routes/components/Event.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
color: white;
3636
3737
background-color: #261f54;
38-
border-left: 3px solid #ca70a2;
38+
border-left: 3px solid #FABD77;
3939
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
4040
border-radius: 2px;
4141
@@ -69,7 +69,7 @@
6969
7070
.special {
7171
color: white;
72-
background-color: #ca70a2;
72+
background-color: #FABD77;
7373
}
7474
7575
@media screen and (max-width: 766px) {

src/routes/imprint/Content.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<span>Samantha Geller (1. Vorsitzender)</span> <br />
1717
<span>Brooke Pintsuk (2. Vorsitzende)</span><br />
1818
<span>Samuel Roeben (Kassier)</span><br />
19-
<span>Le My Ngo (Beisitzer)</span><br />
19+
<span>Konrad Blersch (Beisitzer)</span><br />
2020
</p>
2121

2222
<div class="mb-8">

src/routes/landing/Hero.svelte

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,22 @@
1313
<h1
1414
class="flex dark:text-white mb-4 md:text-5xl text-3xl font-extrabold dark:dark:text-white mt-8"
1515
>
16-
HACKABURG <p class="ml-4 text-palevioletred">2025</p>
16+
HACKABURG <p class="ml-4 text-palevioletred">2026</p>
1717
<br />
1818
</h1>
1919
<p class="mb-6 font-bold dark:text-white lg:mb-8 text-xl">
20-
<b class="text-palevioletred">22.05. - 24.05.2025</b> | Techbase Regensburg
20+
<b class="text-palevioletred">28.05. - 30.05.2026</b> | Techbase Regensburg
2121
</p>
22+
<h1 class="flex dark:text-white mb-4 md:text-5xl text-3xl font-extrabold dark:dark:text-white mt-8"
23+
>applications opening soon!</h1>
24+
25+
<!--
2226
<div class="mb-6 font-bold lg:mb-8 text-md">
2327
<a href="https://apply.hackaburg.de" target="_blank" rel="noreferrer">
2428
<Button label="Apply now!" />
2529
</a>
2630
</div>
31+
-->
2732
<div class="sm:flex md:space-x-4">
2833
<div>
2934
<a

static/favicon.ico

0 Bytes
Binary file not shown.

tailwind.config.cjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ module.exports = {
77
theme: {
88
extend: {
99
colors: {
10-
darkknight: '#1a1136',
11-
deadlydepth: '#1d143e',
12-
tungsten: '#261f54',
10+
darkknight: '#0E1D26',
11+
deadlydepth: '#0E1D26',
12+
tungsten: '#0E1D26',
1313
midnightblue: '#292764',
1414
darkslateblue: '#383376',
1515
mediumpurple: '#8a7fd5',
1616
royallavender: '#8158aa',
1717
slateblue: '#815baa',
18-
palevioletred: '#ca70a2',
18+
palevioletred: '#FABD77',
1919
lightskyblue: '#8ae1f4',
2020
cornflowerblue: '#74aee1'
2121
}

0 commit comments

Comments
 (0)