73 lines
1 KiB
CSS
73 lines
1 KiB
CSS
|
|
body {
|
||
|
|
margin: 0px;
|
||
|
|
font: 1.8rem "Fira Sans", sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
main {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mode {
|
||
|
|
height: 100vh;
|
||
|
|
}
|
||
|
|
img {
|
||
|
|
height: 100%;
|
||
|
|
width:100%;
|
||
|
|
// min-width: 527px;
|
||
|
|
object-fit: contain;
|
||
|
|
}
|
||
|
|
.tracker {
|
||
|
|
display: flex;
|
||
|
|
flex: 1 527px;
|
||
|
|
flex-direction: column;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
background-color: lightgoldenrodyellow;
|
||
|
|
height: 100vh;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.info h1 {
|
||
|
|
margin-bottom: 40px;
|
||
|
|
font-weight: 350;
|
||
|
|
}
|
||
|
|
.tracks {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
align-items: flex-start;
|
||
|
|
justify-content: flex-start;
|
||
|
|
margin: 30px;
|
||
|
|
}
|
||
|
|
.week {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-items: start;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
.day {
|
||
|
|
border: 1px;
|
||
|
|
margin: 4px;
|
||
|
|
min-width: 20px;
|
||
|
|
min-height: 20px;
|
||
|
|
}
|
||
|
|
.creatif {
|
||
|
|
background-color: red;
|
||
|
|
}
|
||
|
|
.en-charge {
|
||
|
|
background-color: orange;
|
||
|
|
}
|
||
|
|
.frigo-vide {
|
||
|
|
background-color: grey;
|
||
|
|
}
|
||
|
|
.croisiere {
|
||
|
|
background-color: green;
|
||
|
|
}
|
||
|
|
</style>
|