Another selector

This commit is contained in:
decentral1se 2021-06-08 16:30:05 +02:00
parent d4d3592a2f
commit 6fe876e558
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
2 changed files with 19 additions and 10 deletions

View File

@ -15,14 +15,12 @@
<div class="content">
<div id="left">
<p id="title">Relearning Relearn</p>
<div id="selector">
<div id="selector1">
<select
onchange="window.location.href=this.value"
style="display: inline-block;"
>
<option value="http://relearn.be/2021/" selected="selected"
>2021</option
>
<option value="http://relearn.be/2021/" selected="selected">2021</option>
<option value="http://relearn.be/2019/">2019</option>
<option value="http://relearn.be/2017/">2017</option>
<option value="http://relearn.be/2016/">2016</option>
@ -30,6 +28,15 @@
<option value="http://relearn.be/2014/">2014</option>
<option value="http://relearn.be/2013/">2013</option>
</select>
<div id="selector2">
<select
onchange="window.location.href=this.value"
style="display: inline-block;"
>
<option value="http://relearn.be/2021/" selected="selected">NL</option>
<option value="http://relearn.be/2021/">EN</option>
</select>
</select>
</div>
<div class="description">
<p>

View File

@ -80,7 +80,7 @@ img {
font-weight: normal;
font-size: 50px;
color: #3c4cac;
margin: 20px 0 0 0;
margin: 20px 0 20px 0;
}
#subtitle {
@ -94,7 +94,6 @@ img {
font-size: 18px;
padding-left: 20px;
padding-right: 100px;
margin-top: -20px;
font-family: "Inconsolata";
}
@ -147,10 +146,13 @@ a {
padding-left: 20px;
}
#selector {
padding-left: 20px;
padding-top: 20px;
padding-bottom: 20px;
#selector1,
#selector2 {
display: inline;
}
#selector1 {
margin-left: 20px;
}
select {