Compare commits
2 Commits
5564dd6771
...
330e128ede
Author | SHA1 | Date | |
---|---|---|---|
|
330e128ede | ||
|
9b7f4170b0 |
@ -20,8 +20,6 @@ a:visited {color:#ff5555;}
|
|||||||
a:hover {color:#999999;}
|
a:hover {color:#999999;}
|
||||||
a:active {color:#ff5555;}
|
a:active {color:#ff5555;}
|
||||||
|
|
||||||
ul li {
|
|
||||||
}
|
|
||||||
body {
|
body {
|
||||||
font-family:sans-serif;
|
font-family:sans-serif;
|
||||||
background:#000;
|
background:#000;
|
||||||
@ -29,11 +27,17 @@ body {
|
|||||||
width: auto;
|
width: auto;
|
||||||
padding: 2% 5%;
|
padding: 2% 5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
table tr td {
|
table tr td {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.links a {
|
td.links a {
|
||||||
display: block;
|
display: block;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
@ -51,3 +55,7 @@ th {
|
|||||||
td.name {
|
td.name {
|
||||||
min-width: 250px;
|
min-width: 250px;
|
||||||
}
|
}
|
||||||
|
span.info {
|
||||||
|
float: right;
|
||||||
|
color: #655;
|
||||||
|
}
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
<h1>Festival HSF 2020 : Programme</h1>
|
<h1>Festival HSF 2020 : Programme</h1>
|
||||||
<h2>
|
<h2>
|
||||||
Stands permanents
|
Stands permanents
|
||||||
|
<span class="info">Cliquer pour afficher / masquer </span>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
@ -180,6 +181,8 @@ Stands permanents
|
|||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
Vendredi 7 février 2019
|
Vendredi 7 février 2019
|
||||||
|
<span class="info">Cliquer pour afficher / masquer </span>
|
||||||
|
|
||||||
</h2>
|
</h2>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
@ -257,6 +260,8 @@ Vendredi 7 février 2019
|
|||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
Samedi 8 février 2019
|
Samedi 8 février 2019
|
||||||
|
<span class="info">Cliquer pour afficher / masquer </span>
|
||||||
|
|
||||||
</h2>
|
</h2>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
@ -358,5 +363,15 @@ Samedi 8 février 2019
|
|||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<script>
|
||||||
|
jQuery(function(){
|
||||||
|
jQuery("h2").live("click",function(e){
|
||||||
|
var el = jQuery(this);
|
||||||
|
el.next().toggle();
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user