2018-03-25 13:22:28 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
General
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#table_planning {
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 10px;
|
2018-05-23 16:51:30 +02:00
|
|
|
font-size: 15px;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#table_planning th {
|
|
|
|
border: none;
|
2018-05-20 23:35:17 +02:00
|
|
|
border-radius: 5px;
|
2018-03-25 13:22:28 +02:00
|
|
|
background: #414141;
|
|
|
|
font-weight: bold;
|
2018-05-20 23:35:17 +02:00
|
|
|
width: 12.5%;
|
2018-05-23 16:51:30 +02:00
|
|
|
font-size: 17px;
|
2018-05-20 23:35:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#table_planning td {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 0 0;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.horaires {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2018-04-17 09:04:31 +02:00
|
|
|
border-top: 1px solid #ccc;
|
2018-03-25 13:22:28 +02:00
|
|
|
text-align: right;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event {
|
2018-05-20 23:35:17 +02:00
|
|
|
border-radius: 10px;
|
2018-03-25 13:22:28 +02:00
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
vertical-align: middle;
|
|
|
|
transition: 0.3s;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
Events Specific
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
.discours {
|
|
|
|
background-color: #212121;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remise_niveau {
|
|
|
|
background-color: #d2a000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.barbecue, .banquet, .act_prev {
|
|
|
|
background-color: #7fa1b3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fabcamp {
|
|
|
|
background-color: #004568;
|
|
|
|
}
|
|
|
|
|
|
|
|
.soir {
|
|
|
|
background-color: #2696a2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.escape_game {
|
|
|
|
background-color: #929ba8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.com_ville {
|
|
|
|
background-color: #bbe19e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.com_walle {
|
|
|
|
background-color: #a20000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wini {
|
|
|
|
background-color: #b7472a;
|
|
|
|
}
|
2018-05-23 16:51:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
#table_planning {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
#table_planning th{
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|