added customfooter scss
This commit is contained in:
parent
e52082ba0b
commit
33683ebded
|
@ -1,5 +1,5 @@
|
||||||
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
||||||
import style from "./styles/footer.scss"
|
import style from "./styles/customfooter.scss"
|
||||||
import btnstyle from "./styles/buttons8831.scss"
|
import btnstyle from "./styles/buttons8831.scss"
|
||||||
import FooterLinksConstructor from "./Footer_links"
|
import FooterLinksConstructor from "./Footer_links"
|
||||||
import Btn8831 from "./Btn8831"
|
import Btn8831 from "./Btn8831"
|
||||||
|
|
50
quartz/components/styles/customfooter.scss
Normal file
50
quartz/components/styles/customfooter.scss
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
footer {
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: 4rem;
|
||||||
|
// opacity: 0.7;
|
||||||
|
* {
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
& ul {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 1rem;
|
||||||
|
margin-top: -1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.rings {
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.ring {
|
||||||
|
display:flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ringbtn {
|
||||||
|
font-size: 0.9rem !important;
|
||||||
|
border-radius: 16px !important;
|
||||||
|
border:none !important;
|
||||||
|
background-color: rgba(100,100,100, 0.3) !important;
|
||||||
|
padding: 0.4rem 0.8rem !important;
|
||||||
|
margin: 0.2rem 0.4rem !important;
|
||||||
|
text-decoration: none !important;
|
||||||
|
width: fit-content !important;
|
||||||
|
height: fit-content !important;
|
||||||
|
cursor:pointer !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ringbtn:hover{
|
||||||
|
background-color: rgba(100,100,100, 0.5) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ring svg {
|
||||||
|
display:none !important;
|
||||||
|
}
|
Loading…
Reference in a new issue