Skip to content

Commit

Permalink
design tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
tivvit committed Oct 16, 2024
1 parent 3547e47 commit a0ffff9
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 13 deletions.
15 changes: 14 additions & 1 deletion _site/assets/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _site/assets/css/main.css.map

Large diffs are not rendered by default.

23 changes: 15 additions & 8 deletions _site/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,22 @@
<div class="container">
<section class="content">
<div class="row mt-4">
<h2>About the Event</h2>
<div class="col-lg-6 gy-2">
<div class="box">
<p>This trip is an initiative of <a href="https://sites.google.com/site/garagepragueone/home">GDG Garage
<p>
This trip is an initiative of <a href="https://sites.google.com/site/garagepragueone/home">GDG Garage
Prague One</a> attendees.</p>
<p>
We felt that more time and focus were needed for some algorithmic tasks that we tried to solve at weekly
GDG Garage meetings.
</p>
<p>Garage Trip is non-profit event powered by sheer joy of the organizers and attendees.</p>
</div>
</div>
<div class="col-lg-6 gy-2">
<div class="box">
<p>The aim of the trip is to have fun and relax, which was supported by:</p>
<p>The aim of the trip is to have fun and relax, which is supported by:</p>
<ul>
<li>Solving algorithmic tasks (in pairs and teams)</li>
<li>Outdoor games</li>
Expand All @@ -65,6 +68,12 @@
<div class="row pt-3">
<h2>Past Events</h2>
<div class="col-lg-6 gy-2">
<!-- 6.9
* scraping with ban and LLMs
* LLMs for feedback processing
* new web
-->

<div class="box">
<h2>5.0 | 2024</h2>
<table>
Expand All @@ -90,6 +99,7 @@ <h2>5.0 | 2024</h2>

<h3>Highlights</h3>
<ul>
<li>International version (in English) for the first time.</li>
<li>
<a href="https://docs.google.com/presentation/d/1ClPxODL56j38TIjbRfBaSCnJc_IWvnPMDj0wB4rHQo4/edit#slide=id.p">Initial
presentation</a></li>
Expand Down Expand Up @@ -261,14 +271,12 @@ <h2>2.0 | 2021</h2>

<h3>Highlights</h3>
<ul>
<li>Escape Game (<a href="https://github.com/gdg-garage/garage-trip-2.0">https://github.com/gdg-garage/garage-trip-2.0</a>)
</li>
<li><a href="https://github.com/gdg-garage/garage-trip-2.0">Escape Game</a></li>
<li>Trip to fort Stachlberg</li>
<li>Clay pigeon shooting</li>
<li>Horse riding</li>
<li>Captain Sonar, Space Alert and other board games</li>
<li>Puzzlehunt (<a href="https://github.com/gdg-garage/garage-trip-2021-cipher-game">https://github.com/gdg-garage/garage-trip-2021-cipher-game)</a>
</li>
<li><a href="https://github.com/gdg-garage/garage-trip-2021-cipher-game">Puzzlehunt</a></li>
<li>Tesla test-drive (and crash)</li>
<li>Algo trivia</li>
<li>Roundnet, archery</li>
Expand Down Expand Up @@ -299,8 +307,7 @@ <h2>1.0 | 2020</h2>

<h3>Highlights</h3>
<ul>
<li>Outdoor puzzlehunt game (<a href="https://github.com/gdg-garage/garage-trip-2020-cipher-game">https://github.com/gdg-garage/garage-trip-2020-cipher-game</a>)
</li>
<li><a href="https://github.com/gdg-garage/garage-trip-2020-cipher-game">Outdoor puzzlehunt game</a></li>
<li>LAN party (Bulánci, FlatOut, Warcraft 3, AoE II, Factorio)</li>
<li>DDR</li>
<li>Movie and games trivia</li>
Expand Down
2 changes: 1 addition & 1 deletion _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h1>Garage Trip 6.9</h1>
</div>

<div class="row">
<div class="col-md-4 offset-md-4 text-center">
<div class="col-lg-6 offset-lg-3 col-xxl-4 offset-xxl-4 text-center">
<div class="row">
<div class="col-lg-6">
<a href="https://forms.gle/VVTcqsUrWKvuSpXx6" class="button purple" target="_blank"><i
Expand Down
20 changes: 19 additions & 1 deletion assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,32 @@ body {
text-decoration: none;
margin: 0.2em;
display: inline-block;

transition: all 300ms;
}

.light {
background-color: $gray;

&:hover {
background-color: darken($gray, 20%);
}
}

.blue {
background-color: $blue;

&:hover {
background-color: darken($blue, 20%);
}
}

.purple {
background-color: $purple;

&:hover {
background-color: darken($purple, 20%);
}
}

.footer {
Expand All @@ -65,7 +79,11 @@ body {
}

a {
color: $blue;
color: $text;

&:hover {
color: darken(white, 20%);
}
}

.accommodation-features {
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>Garage Trip 6.9</h1>
</div>

<div class="row">
<div class="col-md-6 offset-md-3 text-center">
<div class="col-lg-6 offset-lg-3 col-xxl-4 offset-xxl-4 text-center">
<div class="row">
<div class="col-lg-6">
<a href="https://forms.gle/VVTcqsUrWKvuSpXx6" class="button purple" target="_blank"><i
Expand Down

0 comments on commit a0ffff9

Please sign in to comment.