footer & link text
This commit is contained in:
parent
3c10e88b18
commit
c79334c4e9
11 changed files with 255 additions and 49 deletions
|
|
@ -1,5 +1,74 @@
|
|||
@use "abstracts/mixins.scss" as *;
|
||||
|
||||
#site-footer{
|
||||
background-color: var(--color-x-light);
|
||||
min-height: 200px;
|
||||
padding: var(--padding-body);
|
||||
padding-inline: var(--padding-body);
|
||||
padding-top: calc(var(--spacing)*2);
|
||||
padding-bottom: calc(var(--spacing)*3);
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: 300px 300px 1fr;
|
||||
grid-gap: calc(var(--spacing)*1);
|
||||
|
||||
|
||||
.logo-botascopia{
|
||||
width: 140px;
|
||||
display: block;
|
||||
align-self: start;
|
||||
position: relative;
|
||||
top: -5px;
|
||||
svg{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
// .col-left{
|
||||
// grid-column: 1;
|
||||
// grid-row: 2;
|
||||
// }
|
||||
|
||||
// .col-right{
|
||||
// grid-column: 2;
|
||||
// grid-row: 2;
|
||||
// }
|
||||
|
||||
.link-with-arrow{
|
||||
font-size: var(--fs-normal);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
ul{
|
||||
list-style: none;
|
||||
|
||||
|
||||
li{
|
||||
font-size: var(--fs-normal);
|
||||
font-weight: 600;
|
||||
margin-bottom: calc(var(--spacing)*0.5);
|
||||
a{
|
||||
color: var(--color-txt);
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5ch;
|
||||
font-weight: 600;
|
||||
&:hover{
|
||||
text-decoration: underline 1px;
|
||||
|
||||
}
|
||||
.icon{
|
||||
@include icon(16px);
|
||||
opacity: 0.8;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue