2018-06-04 00:06:17 +08:00
|
|
|
@import "colors-main.scss";
|
2019-05-02 05:49:55 +08:00
|
|
|
@import "source-sans.scss";
|
2018-06-04 00:06:17 +08:00
|
|
|
|
2019-05-02 08:09:51 +08:00
|
|
|
html, input, button, textarea {
|
2018-06-04 00:06:17 +08:00
|
|
|
font-family: 'Source Sans Pro', sans-serif;
|
2019-05-04 07:45:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2018-06-04 00:06:17 +08:00
|
|
|
font-size: 14px;
|
|
|
|
color: $gray-7;
|
|
|
|
background: $gray-0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shadow {
|
|
|
|
box-shadow: 0 1px 3px rgba(50,50,93,.15), 0 1px 0 rgba(0,0,0,.02);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
position: relative;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 72px;
|
|
|
|
|
|
|
|
.copyright {
|
|
|
|
align-items: none;
|
|
|
|
color: $gray-3;
|
|
|
|
background: $white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-inner {
|
|
|
|
width: 100%;
|
|
|
|
background: $white;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.links {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-group {
|
|
|
|
margin: 40px;
|
|
|
|
|
|
|
|
.header {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 12px;
|
|
|
|
color: $gray-5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
display: block;
|
|
|
|
color: $gray-5;
|
|
|
|
transition: all 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
color: $gray-7;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1000px) {
|
|
|
|
.link-group {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
|
|
|
|
.links {
|
|
|
|
display: block;
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|