agecem-org/public/css/general.css

81 lines
1.1 KiB
CSS
Raw Normal View History

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