mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
55 lines
No EOL
782 B
SCSS
55 lines
No EOL
782 B
SCSS
footer {
|
|
padding-top: 20px;
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.nav {
|
|
float: right;
|
|
text-align: right;
|
|
display: block;
|
|
li {
|
|
display: inline;
|
|
margin-left: 20px;
|
|
a {
|
|
text-decoration: none;
|
|
color: $blue;
|
|
font-size: 16px;
|
|
font-family: 'montserratregular';
|
|
&:hover {
|
|
color: darken($blue, 6);
|
|
}
|
|
}
|
|
.sign-up {
|
|
color: $green !important;
|
|
&:hover {
|
|
color: darken($green, 6) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.social {
|
|
float: right;
|
|
text-align: right;
|
|
display: block;
|
|
li {
|
|
display: inline;
|
|
margin-left: 10px;
|
|
}
|
|
.social-icon {
|
|
width: 30px;
|
|
height: auto;
|
|
}
|
|
}
|
|
.logo {
|
|
float: left;
|
|
width: 56px;
|
|
height: auto;
|
|
}
|
|
.copyright {
|
|
margin-top: 13px;
|
|
float: left;
|
|
font-size: 12px;
|
|
color: #999;
|
|
}
|
|
} |