mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
53 lines
600 B
SCSS
53 lines
600 B
SCSS
@use "@/_styles/theme" as *;
|
|
|
|
.section
|
|
{
|
|
align-items: center;
|
|
|
|
@include centerTwo;
|
|
|
|
.illustrations
|
|
{
|
|
justify-self: center;
|
|
position: relative;
|
|
|
|
img
|
|
{
|
|
width: 100%;
|
|
max-height: 600px;
|
|
|
|
@include slideIn;
|
|
}
|
|
|
|
// [SPECIAL]
|
|
.whatsThis
|
|
{
|
|
position: absolute;
|
|
cursor: pointer;
|
|
|
|
bottom: calc(50% - 20px + 13.5%);
|
|
left: 40%;
|
|
width: 20%;
|
|
height: 40px;
|
|
|
|
@media screen and (max-width: 1400px)
|
|
{
|
|
bottom: calc(50% - 20px + 6vw)
|
|
}
|
|
}
|
|
}
|
|
|
|
.list
|
|
{
|
|
.cta
|
|
{
|
|
align-self: flex-end;
|
|
}
|
|
|
|
@media screen and (max-width: 860px)
|
|
{
|
|
grid-row: 1;
|
|
}
|
|
}
|
|
}
|