First commit

This commit is contained in:
cedric 2025-11-30 01:37:28 +01:00
commit de232726b7
53 changed files with 3155 additions and 0 deletions

33
css/price.css Normal file
View file

@ -0,0 +1,33 @@
.price-item {
display: grid;
grid-template-columns: 9fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 40px;
align-items: stretch;
}
.price-item div:last-child {
background-color: var(--light);
border-radius: 25px;
color: white;
margin-top: 20px;
margin-bottom: 20px;
font-size: 20px;
padding-top: 33%;
text-align: center;
}
.devis {
text-align: center;
font-size: 24px;
}
@media (max-width: 50em) {
.price-item div:last-child {
font-size: 15px;
height: 50px;
width: 50px;
border-radius: 10px;
}
}