Skip to content

Commit

Permalink
fix legend cycloroure
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-LJ committed Jun 23, 2024
1 parent dc403d4 commit bfc86f1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
5 changes: 2 additions & 3 deletions CycloRoute/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ <h4>Mode CycloTourisme</h4>
<h4>Legende du fond de carte CyclOSM que nous avons intégré à notre style</h4>
<br>

<div class="responsive-columns" style="justify-content: center">
<div class="responsive-three-columns">
<table>
<tr>
<td colspan=2 align="center">
Expand Down Expand Up @@ -282,7 +282,6 @@ <h4>Infrastructure cyclable</h4>
<tr>
</tr>
</table>
<br>

<table>
<tr>
Expand Down Expand Up @@ -341,7 +340,7 @@ <h4>Véloroute</h4>
<td>Itinéraire VTT</td>
</tr>
</table>
<br>

<table>
<tr>
<td colspan=2 align="center">
Expand Down
4 changes: 1 addition & 3 deletions CycloRoute/index_EN.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ <h4>If you want to use it for cyclotourism<h4>
<h4>Legend of the CyclOSM basemap that we integrated into our style</h4>
<br>

<div class="responsive-columns" style="justify-content: center">
<div class="responsive-three-columns">
<table>
<tr>
<td colspan=2 align="center">
Expand Down Expand Up @@ -285,7 +285,6 @@ <h4>Cycling infrastructure</h4>
<tr>
</tr>
</table>
<br>

<table>
<tr>
Expand Down Expand Up @@ -344,7 +343,6 @@ <h4>Cycle routes</h4>
<td>MTB route</td>
</tr>
</table>
<br>

<table>
<tr>
Expand Down
4 changes: 1 addition & 3 deletions CycloRoute/index_ES.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ <h4>Si quieres usarlo para cicloturismo</h4>
<h4>Leyenda del mapa base de CyclOSM que integramos a nuestro estilo</h4>
<br>

<div class="responsive-columns" style="justify-content: center">
<div class="responsive-three-columns">
<table>
<tr>
<td colspan=2 align="center">
Expand Down Expand Up @@ -287,7 +287,6 @@ <h4>Infraestructura ciclista</h4>
<tr>
</tr>
</table>
<br>

<table>
<tr>
Expand Down Expand Up @@ -346,7 +345,6 @@ <h4>Rutas ciclistas</h4>
<td>Ruta BTT</td>
</tr>
</table>
<br>

<table>
<tr>
Expand Down
18 changes: 18 additions & 0 deletions Style.css
Original file line number Diff line number Diff line change
Expand Up @@ -442,4 +442,22 @@ div, button {
.responsive-two-columns > * {
width:50%;
}
}

/* container */
.responsive-three-columns {
display:flex;
flex-wrap:wrap;
}

/* columns */
.responsive-three-columns > * {
width:100%;
}

/* tablet breakpoint */
@media (min-width:850px) {
.responsive-three-columns > * {
width:calc(100% / 3);
}
}

0 comments on commit bfc86f1

Please sign in to comment.