You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
813 B
SCSS
51 lines
813 B
SCSS
.footer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 0px 48px 48px;
|
|
max-width: 1500px;
|
|
margin: auto;
|
|
}
|
|
|
|
.fatLittleStar {
|
|
position: relative;
|
|
margin-right: auto;
|
|
transform: translate(30px, 10px);
|
|
color: #0059ff;
|
|
z-index: -1;
|
|
|
|
svg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|
|
|
|
.author {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.xtimms {
|
|
color: #0059ff;
|
|
cursor: none !important;
|
|
}
|
|
|
|
@media screen and (max-width: 1240px) {
|
|
.footer {
|
|
padding: 0px 36px 36px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.footer {
|
|
padding: 0px 24px 24px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.footer {
|
|
padding: 0px 16px 16px;
|
|
}
|
|
} |