agecem-org/frontend/public/css/general.css
Victor Lacasse-Beaudoin 076bb1a90c feat: renommer package ui pour frontend
Si on suit les considérations du domain-driven design, le fait qu'on
réfère toustes à cette partie du code comme `le frontend` me pousse à
renommer le package pour mieux réflèter notre utilisation.

Ça devrait rendre plus évident où les fichiers sources du frontend sont
situés.
2025-05-06 19:40:23 -04:00

80 lines
No EOL
1.1 KiB
CSS

html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
img {
max-width: 100%;
}
body {
margin: 0;
padding-top: 60px;
padding-bottom: 20px;
}
ul {
margin: 0;
}
a {
color: #FF563C;
text-decoration: none;
}
.wrapper {
max-width: 375px;
width: calc(100% - var(5px));
margin: 0 auto;
}
.heading1 {
font-family: "Poppins";
font-weight: 600;
/*semi-bold*/
font-size: 3rem;
/*48px*/
color: #394596;
/*Bleu AGECEM*/
text-align: center;
}
.heading2 {
font-family: "Poppins";
font-weight: 300;
/*light*/
font-size: 1rem;
/*16px*/
color: #394596;
/*Bleu AGECEM*/
text-align: center;
}
@media screen and (min-width: 768px) {
.wrapper {
max-width: 768px;
width: calc(100% - var(15px));
}
.heading1 {
font-size: 4rem;
/*64px*/
}
.heading2 {
font-size: 1.5rem;
/*24px*/
}
}
@media screen and (min-width: 1140px) {
.wrapper {
max-width: 1140px;
width: calc(100% - var(30px));
}
}