feat(aio): search result stying, add footer

This commit is contained in:
Stefanie Fluin
2017-03-22 20:22:06 -07:00
committed by Pete Bacon Darwin
parent c837b3dfb9
commit 159c98c202
4 changed files with 51 additions and 9 deletions

View File

@ -0,0 +1,17 @@
footer .footer {
background-color: $blue;
color: $offwhite;
text-align: center;
font-weight: 300;
a {
color: $offwhite;
text-decoration: none;
&:hover {
color: $darkgray;
font-weight: 500;
}
&:visited {
text-decoration: none;
}
}
}

View File

@ -5,4 +5,5 @@
@import 'sidenav';
@import 'content-layout';
@import 'search-results';
@import 'top-menu';
@import 'top-menu';
@import 'footer';

View File

@ -1,15 +1,31 @@
.search-results {
background-color: $lightgray;
padding: 20px;
color: $offwhite;
width: 100%;
height: auto;
position: fixed;
display: flex;
top: 0;
left: 0;
right: 0;
background-color: $darkgray;
}
.search-result-item {
color: $darkgray;
text-decoration: none;
&:hover {
color: $blue
.search-area {
h2 {
font-size: 16px;
margin: 10px 0px 5px;
}
&:visited {
a {
font-size: 14px;
color: $lightgray;
text-decoration: none;
&:hover {
color: $blue;
font-weight: 500;
}
&:visited {
text-decoration: none;
}
}
}