47 lines
853 B
SCSS
47 lines
853 B
SCSS
footer {
|
|
text-align: left;
|
|
margin-bottom: 4rem;
|
|
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;
|
|
} |