Compare commits

...

2 Commits

Author SHA1 Message Date
alban 330e128ede [fix] tweak the ux 2020-01-13 14:54:40 +01:00
alban 9b7f4170b0 [wip] 2020-01-13 14:49:47 +01:00
2 changed files with 50 additions and 27 deletions

View File

@ -1,18 +1,18 @@
*{
font-family:"Museo W01 500",Arial,Helvetica Neue,Helvetica,sans-serif;
font-family:"Museo W01 500",Arial,Helvetica Neue,Helvetica,sans-serif;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
font-size: 16pt;
line-height: 1.46em;
}
h1{
font-size:36pt;
font-size:36pt;
}
h2{
font-size:24pt;
margin-top:36pt;
font-size:24pt;
margin-top:36pt;
}
a:link {color:#ff5555;}
@ -20,34 +20,42 @@ a:visited {color:#ff5555;}
a:hover {color:#999999;}
a:active {color:#ff5555;}
ul li {
}
body {
font-family:sans-serif;
background:#000;
color:#ff5555;
width: auto;
padding: 2% 5%;
font-family:sans-serif;
background:#000;
color:#ff5555;
width: auto;
padding: 2% 5%;
}
table{
display:none;
}
table tr td {
color: #ccc;
padding: 10px;
text-align: center;
color: #ccc;
padding: 10px;
text-align: center;
}
td.links a {
display: block;
border-radius: 10px;
background: #333;
padding: 3% 6%;
margin: 10%;
text-align: center;
text-overflow: ellipsis;
overflow: hidden;
display: block;
border-radius: 10px;
background: #333;
padding: 3% 6%;
margin: 10%;
text-align: center;
text-overflow: ellipsis;
overflow: hidden;
}
tr:nth-child(even) {background: #181818}
th {
font-size: 12pt;
font-size: 12pt;
}
td.name {
min-width: 250px;
min-width: 250px;
}
span.info {
float: right;
color: #655;
}

View File

@ -25,6 +25,7 @@
<h1>Festival HSF 2020 : Programme</h1>
<h2>
Stands permanents
<span class="info">Cliquer pour afficher / masquer </span>
</h2>
<table>
@ -180,6 +181,8 @@ Stands permanents
<h2>
Vendredi 7 février 2019
<span class="info">Cliquer pour afficher / masquer </span>
</h2>
<table>
<thead>
@ -257,6 +260,8 @@ Vendredi 7 février 2019
<h2>
Samedi 8 février 2019
<span class="info">Cliquer pour afficher / masquer </span>
</h2>
<table>
<thead>
@ -358,5 +363,15 @@ Samedi 8 février 2019
</tbody>
</table>
<script>
jQuery(function(){
jQuery("h2").live("click",function(e){
var el = jQuery(this);
el.next().toggle();
})
})
</script>
</body>
</html>