1
Fork 0
bauke-xyz/source/scss/components/_page-main.scss

42 lines
779 B
SCSS
Raw Normal View History

2023-01-09 15:09:00 +00:00
@use "mixins";
2021-08-26 15:52:13 +00:00
.page-main {
2022-10-25 21:51:06 +00:00
a {
align-items: center;
display: flex;
height: calc(50vh - 128px);
justify-content: center;
padding: 64px;
text-decoration: none;
2023-01-31 11:51:10 +00:00
@media (max-width: mixins.$breakpoint) {
2022-10-25 21:51:06 +00:00
height: 50vh;
}
2021-08-26 15:52:13 +00:00
2022-10-25 21:51:06 +00:00
&.driftingnebula {
2023-01-09 15:09:00 +00:00
background: url("/assets/driftingnebula 2022-03-09.jpeg");
2022-10-25 21:51:06 +00:00
background-position: center center;
background-repeat: no-repeat;
2022-03-28 13:16:41 +00:00
&:hover {
2022-10-25 21:51:06 +00:00
filter: hue-rotate(180deg);
2022-03-28 13:25:21 +00:00
}
2021-08-26 15:52:13 +00:00
}
2022-03-28 13:53:30 +00:00
2022-10-25 21:51:06 +00:00
&.holllo {
2023-01-09 15:09:00 +00:00
background: url("/assets/holllo-mark-square-pattern.png");
2022-10-25 21:51:06 +00:00
background-color: #1f1731;
background-repeat: repeat;
background-size: 48px;
2022-03-28 13:53:30 +00:00
2022-10-25 21:51:06 +00:00
&:hover {
filter: grayscale(100%);
}
}
2022-03-28 16:01:18 +00:00
2022-10-25 21:51:06 +00:00
img {
max-width: 256px;
}
2022-03-28 16:01:18 +00:00
}
2022-03-28 13:53:30 +00:00
}