123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- main:not(.home) {
- @media screen and (min-width: 768px) {
- padding: 1.5rem 0 !important;
- }
- @media screen and (min-width: 992px) {
- padding: 4rem 0 !important;
- }
- }
- //
- body {
- #content-ontop{
- z-index: 3000;
- position: relative;
- top: -1200px;
- }
-
- #background-animated{
- z-index: 2000;
- position: relative;
- left: -350px;
-
- }
- position: relative;
- &::before {
- z-index: -1;
- content: " ";
- width: 100%;
- height: 100%;
- // background-image: url("../images/fond-ronds-trace.svg");
- background-repeat: no-repeat;
- background-size: content;
- display: block;
- position: absolute;
- opacity: 0.5;
- top: 100px;
- left: +53px;
- }
- // &::after {
- // z-index: -1;
- // content: " ";
- // width: 100%;
- // height: 100%;
- // background: linear-gradient(
- // to top,
- // white,
- // rgba(255, 255, 255, 0.8)
- // );
- // display: block;
- // position: absolute;
- // transform: translateY(-100%);
- // top: 100%;
- // left: 0;
- // }
- }
- article {
- .__title {
- // @include croix_or;
- }
- &.publications,
- &.interviews {
- margin-top: 1rem;
- .paragraph--type--images {
- img {
- max-width: 100%;
- max-height: 400px;
- object-fit: contain;
- @media screen and (min-width: 992px) {
- width: 100%;
- }
- }
- }
- }
- }
- h4 {
- // @include croix_or;
- }
|