Browse Source

Another selector

master
decentral1se 3 years ago
parent
commit
6fe876e558
No known key found for this signature in database GPG Key ID: 92DAD76BD9567B8A
  1. 15
      index.html
  2. 14
      style.css

15
index.html

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

14
style.css

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

Loading…
Cancel
Save