mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-19 12:36:23 -07:00
76 lines
No EOL
1,006 B
SCSS
76 lines
No EOL
1,006 B
SCSS
@use 'util';
|
|
@use 'burichan/colors';
|
|
@use 'burichan/img';
|
|
@use 'burichan/front';
|
|
@use 'burichan/manage';
|
|
|
|
body {
|
|
font: colors.$font;
|
|
background: colors.$bgcol;
|
|
margin: 8px;
|
|
}
|
|
|
|
a, a:visited {
|
|
color: colors.$linkcol;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0px 0px 0px 0px;
|
|
font-size: 140%;
|
|
}
|
|
|
|
h2 a {
|
|
text-decoration: none;
|
|
color: #550;
|
|
}
|
|
|
|
h3 {
|
|
margin: 0px;
|
|
font-size: medium;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-family: colors.$hfont-family;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
div#topbar {
|
|
@include util.shadow-filter(3px 5px 6px colors.$shadowcol);
|
|
min-height: 1.5em;
|
|
}
|
|
|
|
div#topbar,
|
|
a.topbar-item,
|
|
a.topbar-item:visited,
|
|
.dropdown-button,
|
|
div.dropdown-menu {
|
|
background: #080e5e;
|
|
color: colors.$bgcol;
|
|
}
|
|
|
|
div.dropdown-menu {
|
|
@include util.shadow-filter(3px 5px 6px colors.$shadowcol);
|
|
a, h3 {
|
|
color: colors.$bgcol;
|
|
}
|
|
}
|
|
|
|
a.topbar-item:hover,
|
|
a.topbar-item:active,
|
|
div.dropdown-menu a:hover {
|
|
background: #0a127b;
|
|
}
|
|
|
|
footer {
|
|
font-size: 0.75em;
|
|
} |