92 lines
1.6 KiB
SCSS
92 lines
1.6 KiB
SCSS
@import "./Design.scss";
|
|
@import "./styles/TopBar.scss";
|
|
@import "./styles/SearchPanel.scss";
|
|
@import "./styles/Footer.scss";
|
|
@import "./styles/SearchResults.scss";
|
|
@import "./styles/Pictograms.scss";
|
|
@import "./styles/Restaurant.scss";
|
|
@import "./styles/DishList.scss";
|
|
@import "./styles/Dialogs.scss";
|
|
@import "./styles/NewRestaurant.scss";
|
|
@import "./styles/EditRestaurant.scss";
|
|
@import "./styles/Dish.scss";
|
|
@import "./styles/Home.scss";
|
|
|
|
.App {
|
|
background-image: url("./public/bg.png");
|
|
background-size: contain;
|
|
background-repeat: repeat;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
background-color: $bg-color;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
overflow: auto;
|
|
}
|
|
|
|
.clearfix::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
|
|
.logo {
|
|
width: 20vw;
|
|
max-width: 300px;
|
|
margin: 16px;
|
|
}
|
|
|
|
.footer {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.darkParagraph {
|
|
color: $accents-color;
|
|
}
|
|
|
|
.main-container {
|
|
scroll-margin-top: 5rem;
|
|
scroll-margin-bottom: 5rem;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
text-align: center;
|
|
align-items: center;
|
|
flex-grow: 20;
|
|
}
|
|
|
|
.vertical-divider {
|
|
background-color: $bg-color;
|
|
width: 1px;
|
|
height: 70%;
|
|
margin-left: 10px;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
|
|
.cookies-container {
|
|
max-width: 800px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: fixed;
|
|
bottom: 24px;
|
|
background-color: #262626;
|
|
border-radius: 24px;
|
|
z-index: 5;
|
|
h5 {
|
|
font-weight: 500;
|
|
color: $gray;
|
|
padding-left: 18px;
|
|
}
|
|
}
|