Amélioration visuel véhicule

This commit is contained in:
Ambulance Clerc
2022-11-10 14:59:29 +01:00
parent 2c3c630b9f
commit 76b4aaa00c
2 changed files with 28 additions and 6 deletions

View File

@@ -1,6 +1,28 @@
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: auto;
scrollbar-color: #ffffff #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 12px;
}
*::-webkit-scrollbar-track {
background: black;
}
*::-webkit-scrollbar-thumb {
background-color: #ffffff;
border-radius: 15px;
border: 3px solid #ffffff;
}
:root{
--main-text-color: white;
--main-text-family: 'Source Sans Pro', sans-serif;
--main-child-container-height: 175px;
}
.main_container{
width: 100%;
@@ -30,7 +52,7 @@
gap: 0px;
align-items: stretch;
}
.child div{
.child_box div{
}