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

60 lines
No EOL
968 B
CSS
Executable file

#tableWrapper {
width: 100%;
overflow: auto;
display: flex;
}
#tablePlanning {
margin: auto;
display: flex;
}
.planning-header {
border: none;
border-radius: 5px;
background: #414141;
font-weight: bold;
font-size: 17px;
padding: 5px;
margin: 5px 0;
height: 50px;
}
.horaires {
background: none;
border: none;
border-top: 1px solid #ccc;
text-align: right;
vertical-align: top;
margin-top: -1px; /* negate the border to prevent offsest with events */
}
.event {
background: none;
border: none;
color: white;
transition: 0.3s;
cursor: pointer;
position: absolute;
width: 100%;
display: flex;
}
.event-color {
background-color: #bf021c;
border-radius: 10px;
border: none;
margin: 5px 0;
display: flex;
width: 100%;
}
.event-text {
margin: auto;
}
.day-column {
position: relative;
min-width: 200px;
margin: 0 5px;
}