feat(aio): search result stying, add footer
This commit is contained in:

committed by
Pete Bacon Darwin

parent
c837b3dfb9
commit
159c98c202
17
aio/src/styles/1-layouts/_footer.scss
Normal file
17
aio/src/styles/1-layouts/_footer.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
@ -5,4 +5,5 @@
|
||||
@import 'sidenav';
|
||||
@import 'content-layout';
|
||||
@import 'search-results';
|
||||
@import 'top-menu';
|
||||
@import 'top-menu';
|
||||
@import 'footer';
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user