mirror of
https://github.com/ConjureETS/Site.git
synced 2026-03-24 09:40:57 +00:00
55 lines
1.2 KiB
SCSS
55 lines
1.2 KiB
SCSS
@media only screen and (max-width: 1028px) {
|
|
section#activites {
|
|
.sub-section {
|
|
&.slide {
|
|
&:not(.animation-inversed) {
|
|
transform: translateX(50%);
|
|
}
|
|
|
|
&.animation-inversed {
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|
|
|
|
&:not(.animation-inversed) {
|
|
div.content {
|
|
left: -50%;
|
|
}
|
|
}
|
|
|
|
&.animation-inversed {
|
|
div.content {
|
|
right: -50%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
section#activites {
|
|
.sub-section {
|
|
&.slide {
|
|
&:not(.animation-inversed) {
|
|
transform: translateX(75%);
|
|
}
|
|
|
|
&.animation-inversed {
|
|
transform: translateX(-75%);
|
|
}
|
|
}
|
|
|
|
&:not(.animation-inversed) {
|
|
div.content {
|
|
left: -75%;
|
|
}
|
|
}
|
|
|
|
&.animation-inversed {
|
|
div.content {
|
|
right: -75%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |