1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-25 09:36:24 -07:00

Rewrite CSS as Sass (.scss) files for better organization/loading

This commit is contained in:
user.email 2018-11-25 14:16:22 -08:00
parent 0d36172570
commit a6d7e9f188
56 changed files with 1751 additions and 1511 deletions

48
sass/pipes.scss Normal file
View file

@ -0,0 +1,48 @@
@import 'pipes/colors';
@import 'pipes/front';
@import 'pipes/manage';
@import 'pipes/img';
@import 'util';
* {
outline: none;
}
body {
background-image: url(res/pipes_bg.png);
color: #d8d0b9;
font: $font;
}
header h1, span#site-title {
color: $headercol;
}
a {
color: $linkcol;
font: $font;
text-decoration: none;
}
a:hover {
background: inherit;
color: $linklight;
}
a.topbar-item:hover {
background-color: $bglight;
}
div#footer, div#footer * {
font-size: 9pt;
}
div#topbar {
background-color: $bgcol;
@include box-shadow(0px 2px 2px 3px $shadowcol);
z-index: 9001;
li:hover {
background-color: $bglight;
}
}