webapp/src/components/Discours/Hero.module.scss

42 lines
703 B
SCSS
Raw Normal View History

2023-08-27 22:05:09 +00:00
.aboutDiscours {
@include font-size(1.6rem);
background: #fef2f2;
font-weight: 500;
2022-09-09 11:53:35 +00:00
margin-bottom: 6.4rem;
2023-08-27 22:05:09 +00:00
padding: 8rem 0 6.4rem;
2022-09-09 11:53:35 +00:00
text-align: center;
h4 {
2023-08-27 22:05:09 +00:00
@include font-size(4rem);
font-weight: bold;
line-height: 1.1;
margin-bottom: 2rem;
2022-09-09 11:53:35 +00:00
}
em {
font-weight: inherit;
}
}
2023-08-27 22:05:09 +00:00
.aboutDiscoursActions {
2022-09-09 11:53:35 +00:00
margin-top: 4.8rem;
2023-08-27 22:05:09 +00:00
:global(.button) {
border: 3px solid #000;
border-radius: 0.8rem;
color: #fff;
2022-09-09 11:53:35 +00:00
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 0.8rem;
margin-bottom: 0.8em;
2023-07-09 18:34:59 +00:00
padding-bottom: 0.6rem;
2022-09-09 11:53:35 +00:00
transition: all 0.2s;
&:hover {
background: #fff;
color: #000;
}
}
}