website/assets/scss/footer.scss
2022-04-12 00:10:49 +03:00

322 lines
6.8 KiB
SCSS

@import 'variables';
.footer {
width: 100%;
padding: 118px 0;
@media only screen and (max-width: $mobile-max-width) {
padding-top: 50px;
}
& > .footer-main {
& > .up-main {
display: flex;
@media only screen and (max-width: $mobile-max-width) {
flex-direction: column;
}
.left-div {
.foot-logo {
height: 32px;
}
p {
width: 360px;
height: 44px;
margin-top: 40px;
font-size: 16px;
line-height: 1.38;
color: #919aa3;
@media only screen and (max-width: $mobile-max-width) {
width: auto;
}
}
div {
width: 358px;
height: 48px;
margin-top: 20px;
border-radius: 24px;
border: solid 1px #ccd3db;
background-color: #f5f8f9;
input {
width: 207px;
height: 20px;
font-size: 14px;
margin-left: 16px;
color: #76808a;
border: none;
outline: none;
background-color: #f5f8f9;
}
button {
width: 111px;
height: 40px;
margin: 4px 5px 4px 14px;
border-radius: 20px;
border: none;
font-size: 14px;
color: #ffffff;
cursor: pointer;
box-shadow: 0 10px 50px 0 rgba(34, 43, 62, 0.1), 0 8px 16px 0 rgba(33, 43, 61, 0.2);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1) 97%), linear-gradient(to bottom, #55bc8a, #55bc8a);
&:hover {
box-shadow: none;
}
}
@media only screen and (max-width: $mobile-max-width) {
width: 280px;
input {
width: 150px;
}
button {
width: 90px;
}
}
}
#message {
color: red;
margin-left: 16px;
}
}
.right-div {
flex: 1;
margin-left: 30px;
@media only screen and (max-width: $mobile-max-width) {
width: 100%;
margin-left: 0px;
}
& > ul {
li {
max-width: 170px;
@media only screen and (max-width: $mobile-max-width) {
margin-top: 20px;
}
}
li:last-child {
margin-right: 0;
}
}
.h3 {
font-weight: 600;
line-height: 1.5;
color: #171c34;
margin-bottom: 10px;
}
a {
display: block;
line-height: 1.2;
color: #919aa3;
margin-bottom: 14px;
&:hover {
color: #55bc8a;
}
}
}
}
.down-main {
text-align: center;
margin-top: 60px;
.img-div {
font-size: 0;
svg {
width: 32px;
height: 32px;
color: #b6c2cd;
cursor: pointer;
transition: all 0.2s ease-in-out;
margin-right: 8px;
}
a {
display: inline-block;
width: 34px;
height: 34px;
margin: 0 6px;
background-position: center;
background-repeat: no-repeat;
}
.wechat {
position: relative;
.hide-div {
display: none;
position: absolute;
top: -10px;
left: 50%;
padding: 10px;
transform: translate(-50%, -100%);
background: #ffffff;
p {
font-size: 12px;
color: #b6c2cd;
}
img {
margin: 0 10px;
}
&::after {
content: '';
position: absolute;
bottom: -18px;
left: 50%;
transform: translateX(-50%);
border: 10px solid transparent;
border-top-color: #ffffff;
}
}
&:hover {
svg {
color: green;
}
div {
display: block;
}
}
}
.bilibili-a {
background-image: url("/images/footer/bilibili.svg");
&:hover {
background-image: url("/images/footer/bilibili-hover.svg");
}
}
.facebook-a {
background-image: url("/images/footer/facebook.svg");
&:hover {
background-image: url("/images/footer/facebook-hover.svg");
}
}
.youtube-a {
background-image: url("/images/footer/youtube.svg");
&:hover {
background-image: url("/images/footer/youtube-hover.svg");
}
}
.slack-a {
background-image: url("/images/footer/slack.svg");
&:hover {
background-image: url("/images/footer/slack-hover.svg");
}
}
.twitter-a {
background-image: url("/images/footer/twitter.svg");
&:hover {
background-image: url("/images/footer/twitter-hover.svg");
}
}
.github-a {
background-image: url("/images/footer/github.svg");
&:hover {
background-image: url("/images/footer/github-hover.svg");
}
}
.medium-a {
background-image: url("/images/footer/medium.svg");
&:hover {
background-image: url("/images/footer/medium-hover.svg");
}
}
.linkedin-a {
background-image: url("/images/footer/linkedin.svg");
&:hover {
background-image: url("/images/footer/linkedin-hover.svg");
}
}
}
.p1 {
height: 23px;
margin-top: 6px;
font-size: 14px;
line-height: 23px;
font-weight: 500;
letter-spacing: 1.08px;
color: #242e42;
}
.case {
margin-top: 20px;
}
}
}
}
.cookie {
position: fixed;
display: none;
z-index: 10;
bottom: 20px;
left: 0;
right: 0;
& > div {
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
line-height: 20px;
background-color: #242e42;
border-radius: 4px;
@media only screen and (max-width: $mobile-max-width) {
flex-direction: column;
}
}
a {
color: #99e2bf;
&:hover {
color: #55bc8a;
}
}
button {
width: 240px;
height: 40px;
border: none;
margin-left: 20px;
border-radius: 20px;
font-size: 14px;
color: #ffffff;
background-color: #479e88;
cursor: pointer;
&:hover {
background-color: #3b747a;
}
@media only screen and (max-width: $mobile-max-width) {
margin-top: 20px;
}
}
}