37 lines
661 B
SCSS
37 lines
661 B
SCSS
![]() |
.footer-section {
|
||
|
// height: 30em;
|
||
|
background-color: #efeee8;
|
||
|
|
||
|
.footer-top {
|
||
|
&-img {
|
||
|
position: relative;
|
||
|
&::after {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
border-bottom: 1px solid #00baba;
|
||
|
top: 44px;
|
||
|
width: 12em;
|
||
|
right: 160px;
|
||
|
}
|
||
|
&::before {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
top: 44px;
|
||
|
width: 12em;
|
||
|
border-bottom: 1px solid #00baba;
|
||
|
left: 150px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.footer-card {
|
||
|
width: 110px;
|
||
|
height: 110px;
|
||
|
// background-color: red;
|
||
|
}
|
||
|
.copyright {
|
||
|
text-align: center;
|
||
|
padding: 1em;
|
||
|
font-size: 0.8rem;
|
||
|
}
|
||
|
}
|