site-accueil-insa/assets/css/planningEvents.css
2019-05-25 13:22:24 +02:00

69 lines
No EOL
1 KiB
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:hover {
color: #e9b82f;
}
.event-color {
border-radius: 10px;
border: none;
margin: 5px 0;
display: flex;
width: 100%;
}
.event-color:hover{
border-color: #e9b82f;
}
.event-text {
margin: auto;
}
.day-column {
position: relative;
min-width: 150px;
margin: 0 5px;
}