wiki/_sass/_footer.scss

28 lines
374 B
SCSS
Raw Permalink Normal View History

2017-12-02 02:04:52 -08:00
// フッタ
footer {
background: var(--footer-bg);
color: var(--footer-color);
2017-12-02 02:04:52 -08:00
padding: 1em 0;
text-align: center;
a {
text-decoration: underline;
&:link,
&:visited,
&:hover,
&:focus,
&:active {
color: var(--footer-color);
2017-12-02 02:04:52 -08:00
}
}
2018-08-12 00:29:14 -07:00
> div.menu {
display: none;
@include media-mobile {
display: block;
}
}
2017-12-02 02:04:52 -08:00
}