Amélioration visuel véhicule

This commit is contained in:
Ambulance Clerc
2022-11-10 10:39:25 +01:00
parent 5c52baa2cd
commit 118a5e0da9
4 changed files with 70 additions and 11 deletions

View File

@@ -1,15 +1,39 @@
:root{
--main-text-color: white;
--main-text-family: 'Source Sans Pro', sans-serif;
}
.main_container{
width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
height: 350px;
height: 100%;
}
.child{
width: 350px;
color: green;
border: solid 1px black;
background-repeat: no-repeat, repeat;
background-size: contain;
height: 500px;
background-repeat: no-repeat, repeat;
background-size: contain;
}
.child_box{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
gap: 0px;
align-items: stretch;
}
.child div{
}
body{
background-color: black;
font-family: var(--main-text-family);
font-size: 12pt;
color: var(--main-text-color);
}