site-accueil-insa/assets/css/planningEvents.css

66 lines
978 B
CSS
Raw Normal View History

#tableWrapper {
2018-03-25 13:22:28 +02:00
width: 100%;
overflow: auto;
display: flex;
}
#tablePlanning {
margin: auto;
display: flex;
2019-05-25 13:22:24 +02:00
2018-03-25 13:22:28 +02:00
}
.planning-header {
2018-03-25 13:22:28 +02:00
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-23 16:51:30 +02:00
font-size: 17px;
padding: 5px;
margin: 5px 0;
height: 50px;
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;
margin-top: -1px; /* negate the border to prevent offsest with events */
2018-03-25 13:22:28 +02:00
}
.event {
background: none;
2018-03-25 13:22:28 +02:00
border: none;
color: white;
transition: 0.3s;
cursor: pointer;
position: absolute;
width: 100%;
display: flex;
2018-03-25 13:22:28 +02:00
}
2019-05-25 13:22:24 +02:00
.event:hover {
color: #e9b82f;
}
.event-color {
border-radius: 10px;
border: none;
margin: 5px 0;
display: flex;
width: 100%;
2018-03-25 13:22:28 +02:00
}
2019-05-25 13:22:24 +02:00
.event-text {
margin: auto;
2018-03-25 13:22:28 +02:00
}
2018-05-23 16:51:30 +02:00
.day-column {
position: relative;
2019-05-25 13:22:24 +02:00
min-width: 150px;
margin: 0 5px;
2018-05-23 16:51:30 +02:00
}