blob: 8a47f9fc27b1ff800f17770433ba4e177740d984 (
plain) (
tree)
|
|
/* This file is part of hmnoweb, a RefineryCMS based webapp for heavymetal.no
* Copyright (C) 2018 Harald Eilertsen <haraldei@anduin.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License version 3
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@import "color_scheme";
@mixin sidebar-headers {
clear: both;
padding: 2px;
color: $link-fg;
background: {
color: $header-bg;
image: image_url("module-header-bg.jpg");
repeat: repeat;
}
}
#left_sidebar, #right_sidebar {
width: 200px;
border: 1px groove $dark-border-fg;
background-color: $bg2;
h2 {
@include sidebar-headers;
}
img {
max-width: 95%;
height: auto;
}
#tags, #categories, #rss_feed_subscribe {
margin-left: 5px;
}
#categories {
padding-left: 0;
li {
list-style-type: none;
}
}
#tags {
.tag1 { font-size: 60%; }
.tag2 { font-size: 80%; }
.tag3 { font-size: 100%; }
.tag4 { font-size: 120%; }
.tag5 { font-size: 140%; }
.tag6 { font-size: 160%; }
}
}
#left_sidebar {
margin-right: $spacing;
}
#right_sidebar {
margin-left: $spacing;
}
.sidebar_module {
padding-bottom: $spacing;
h1 {
font-size: 12pt;
@include sidebar-headers;
}
p {
margin-top: 0;
}
header {
font: {
weight: 600;
size: 110%;
}
}
.inner {
padding: 5px;
}
}
|