forked from rebillar/site-accueil-insa
66 lines
No EOL
978 B
CSS
Executable file
66 lines
No EOL
978 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:hover {
|
|
color: #e9b82f;
|
|
}
|
|
|
|
.event-color {
|
|
border-radius: 10px;
|
|
border: none;
|
|
margin: 5px 0;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
.event-text {
|
|
margin: auto;
|
|
}
|
|
|
|
.day-column {
|
|
position: relative;
|
|
min-width: 150px;
|
|
margin: 0 5px;
|
|
} |