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

67 lines
1 KiB
CSS
Raw Normal View History

#tableWrapper {
2018-03-25 13:22:28 +02:00
width: 100%;
overflow: auto;
display: flex;
}
#tablePlanning {
margin: auto auto 20px auto;
display: flex;
2019-05-25 13:22:24 +02:00
2018-03-25 13:22:28 +02:00
}
.planning-header {
font-family: Harry-P, fantasy;
2018-03-25 13:22:28 +02:00
border: none;
border-radius: 0.2rem;
2018-03-25 13:22:28 +02:00
background: #414141;
font-size: 2rem;
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
}
.event-color {
border-radius: 0.2rem;
transition: 0.2s;
border: none;
margin: 5px 0;
display: flex;
width: 100%;
2018-03-25 13:22:28 +02:00
}
.event-color:hover {
border-radius: 1rem;
transform: scale(1.05);
}
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;
}