website/sass/css/prices.scss

59 lines
859 B
SCSS
Raw Normal View History

@import "defs";
2023-05-27 13:32:08 +00:00
// TABLEAU DES PRIX
.prices {
width: 100%;
table-layout: fixed;
}
.prices th {
font-family: Neucha;
font-size: 24px;
background: linear-gradient(0.125turn, $blue, $violet);
color: #fff;
2023-04-18 17:54:55 +00:00
padding: 4px;
}
.prices td {
padding: 4px;
text-align: center;
font-size: 20px;
}
.prices tr td:first-of-type {
background-color: $grad1_3tr;
}
.prices tr td:first-of-type + td {
background-color: $grad2_3tr;
}
.prices tr td:first-of-type + td + td {
background-color: $grad3_3tr;
}
2023-05-27 13:32:08 +00:00
// À LA CARTE
.alacarte {
display: flex;
gap: 32px;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.alacarte-item {
text-align: center;
min-height: 150px;
}
.alacarte-title {
font-family: Neucha;
font-size: 22px;
background: linear-gradient(0.125turn, $blue, $violet);
color: #fff;
padding: 8px;
border-radius: 8px;
}