95 lines
1.7 KiB
SCSS
95 lines
1.7 KiB
SCSS
@use "variables.scss";
|
|
@use "mixins.scss";
|
|
@use "views/index.scss";
|
|
@use "views/aydinlatma.scss";
|
|
@use "partials/header.scss";
|
|
@use "partials/footer.scss";
|
|
@use "sass:math";
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: variables.$clr_sides;
|
|
}
|
|
|
|
.content-spacing {
|
|
padding: math.div(variables.$px_horizontalPadding, 2) variables.$px_horizontalPadding;
|
|
|
|
@include mixins.mx_index_brands_fix {
|
|
padding: math.div(variables.$px_horizontalPadding2, 2) variables.$px_horizontalPadding2;
|
|
}
|
|
|
|
@include mixins.mx_index_brands_fix2 {
|
|
padding: math.div(variables.$px_horizontalPadding3, 2) variables.$px_horizontalPadding3;
|
|
}
|
|
}
|
|
|
|
.ignore-vertical {
|
|
// ignores vertical padding applied by .content-spacing
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
#header {
|
|
// Layout, details and children is set in partials/header.scss
|
|
height: 10vh;
|
|
|
|
@include mixins.header_overflow2 {
|
|
height: 5vh;
|
|
}
|
|
}
|
|
|
|
.dropdown {
|
|
position: fixed;
|
|
z-index: 2;
|
|
background-color: #706fff;
|
|
width: 100vw;
|
|
height: 90vh;
|
|
animation: slide-in-right 550ms;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.dropdown-nav-item {
|
|
color: white;
|
|
font: 600 28px "Montserrat", sans-serif;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.dropdown_close_animation {
|
|
animation: 550ms slide-in-left;
|
|
}
|
|
|
|
#container {
|
|
height: 90vh;
|
|
display: grid;
|
|
grid-template-rows: 1fr auto;
|
|
grid-template-columns: 1fr;
|
|
grid-gap: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
#content {
|
|
background: whitesmoke;
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
#footer {
|
|
grid-column: 1;
|
|
grid-row: 2;
|
|
}
|
|
|
|
#footer-stateless {
|
|
grid-column: 1;
|
|
grid-row: 3;
|
|
} |