48 lines
867 B
SCSS
48 lines
867 B
SCSS
$xl-breakpoint: 1800px;
|
|
$lg-breakpoint: 1600px;
|
|
$md-breakpoint: 1100px;
|
|
$sm-breakpoint: 900px;
|
|
$xs-breakpoint: 400px;
|
|
|
|
|
|
$background-dark: #1f1f1e;
|
|
$background: #303131;
|
|
$primary: #db8d42;
|
|
$secondary: #f15a24;
|
|
|
|
@font-face {
|
|
font-family: "Teko";
|
|
size-adjust: 140%;
|
|
src: url("../Teko-Regular.ttf");
|
|
}
|
|
@font-face {
|
|
font-family: "Teko Light";
|
|
size-adjust: 140%;
|
|
src: url("../Teko-Light.ttf");
|
|
}
|
|
|
|
.pagination-nav {
|
|
margin-top: 1em;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
|
|
@import 'general.scss';
|
|
@import 'page_container.scss';
|
|
@import 'header.scss';
|
|
@import 'news.scss';
|
|
@import 'article.scss';
|
|
@import 'gallery.scss';
|
|
@import 'single_image.scss';
|
|
@import 'footer.scss';
|
|
|
|
// components
|
|
@import 'tags.scss';
|
|
|
|
@import 'prices.scss';
|
|
@import 'landing.scss';
|
|
// @import 'about.scss';
|
|
@import 'card.scss';
|
|
@import 'contact.scss';
|
|
|