mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-06-08 19:33:12 +00:00
Add styling to BasketItem
Move footer style to its own file Make the contact form a bit more intuitive General cleanup
This commit is contained in:
parent
764aaa48ea
commit
6f97ad9a4c
9 changed files with 146 additions and 84 deletions
61
front/src/styles/_footer.scss
Normal file
61
front/src/styles/_footer.scss
Normal file
|
@ -0,0 +1,61 @@
|
|||
footer {
|
||||
padding: $spacing-normal;
|
||||
|
||||
position: relative;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
border-top: 3px solid $color-primary;
|
||||
background-color: $color-dark;
|
||||
color: $color-on-dark;
|
||||
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.footer-section {
|
||||
padding: $spacing-normal;
|
||||
|
||||
min-width: 200px;
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
|
||||
> ul {
|
||||
padding: 0;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
> li {
|
||||
margin: 0 $spacing-small 0 0;
|
||||
list-style: none;
|
||||
|
||||
> a {
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
|
||||
border-radius: $border-radius-circle;
|
||||
background-color: transparent;
|
||||
color: $color-on-dark;
|
||||
|
||||
&:hover {
|
||||
background-color: $color-light;
|
||||
color: $color-on-light;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> h4 {
|
||||
margin-bottom: $spacing-xsmall;
|
||||
}
|
||||
}
|
|
@ -13,11 +13,10 @@ nav {
|
|||
top: 0;
|
||||
left: 0;
|
||||
|
||||
border-bottom: 2px solid $color-primary;
|
||||
border-bottom: 3px solid $color-primary;
|
||||
background-color: $color-dark;
|
||||
color: $color-light;
|
||||
|
||||
//transition: box-shadow 0.05s ease-in-out;
|
||||
z-index: 9999999;
|
||||
|
||||
ul {
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
@import "reset";
|
||||
@import "loading_bar";
|
||||
@import "navigation_bar";
|
||||
@import "footer";
|
||||
@import "announcement_banner";
|
||||
@import "container";
|
||||
@import "menu_item";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue