You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aplesports/src/scss/pages/_rumbleregions.scss

147 lines
2.9 KiB
SCSS

.regional {
.bg-only {
position: fixed;
top: 0;
left: 0;
height: 400%;
width: 400%;
overflow: hidden;
z-index: -1;
background-color: #161616;
opacity: 0.1;
rotate: 30deg;
transform: translate(-50%, 0);
background-image: linear-gradient(#ffffff 1.8px, transparent 1.8px), linear-gradient(90deg, #ffffff 1.8px, transparent 1.8px), linear-gradient(#ffffff 0.9px, transparent 0.9px), linear-gradient(90deg, #ffffff 0.9px, #161616 0.9px);
background-size: 45px 45px, 45px 45px, 9px 9px, 9px 9px;
background-position: -1.8px -1.8px, -1.8px -1.8px, -0.9px -0.9px, -0.9px -0.9px;
animation: moveBg 20s ease-in-out infinite;
}
section {
min-height: 100vh;
&.hero {
position: relative;
img {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
min-width: 300px;
width: 20%;
max-width: 500px;
}
.goback {
padding-top: 100px;
margin: 0 auto;
display: flex;
flex-direction: row;
max-width: 300px;
justify-content: space-evenly;
align-items: center;
p {
font-size: 14pt;
}
svg {
width: 24px;
height: 24px;
fill: white;
}
&:hover {
cursor: pointer;
p {
text-decoration-line: underline;
}
}
}
}
&.info {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.infomercial {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: calc(100vw / 2);
}
}
}
&.trailer {
min-height: 100vh;
display: grid;
place-items: center;
padding: 1rem 2rem;
iframe {
width: 100%;
height: 100%;
max-width: 1280px;
max-height: 720px;
}
}
}
footer {
font-family: $text-font-stack;
width: 100%;
padding: 2rem 2rem;
background: lighten($bg-color, 20%);
text-align: center;
font-size: 1rem;
letter-spacing: 0.5px;
line-height: 1.5;
}
}
@keyframes moveBg {
0% {
transform: translate(-50%, 0);
}
50% {
transform: translate(-50%, 2%);
}
100% {
transform: translate(-50%, 0);
}
}
@media screen and (max-width: 960px) {
.regional > section.info {
padding: 1rem 2rem;
margin-bottom: 5rem;
.infomercial {
flex-direction: column;
width: 100%;
height: 100%;
div {
width: 100%;
height: 100%;
justify-content: space-evenly;
align-items: flex-start;
}
}
}
}