1
0
www.mikescher.com/www/data/css/styles_global.scss

65 lines
1.3 KiB
SCSS
Raw Normal View History

2017-12-29 00:40:57 +01:00
@import 'styles_config';
body {
background-color: $COL_BACKGROUND;
color: $COL_TEXT_NORMAL;
2017-12-31 17:53:59 +01:00
font-family: $FONT_DEFAULT;
2017-12-29 00:40:57 +01:00
}
#content {
padding-top: 64px;
display: flex;
justify-content: center;
line-height: 1.4;
}
.content-responsive {
margin-left: auto;
margin-right: auto;
}
@media(max-width:767px) { .content-responsive { width: auto; } }
@media(min-width:768px) { .content-responsive { width: auto; } }
@media(min-width:992px) { .content-responsive { width: 724px; } }
@media(min-width:1200px){ .content-responsive { width: 1170px; } }
2018-01-03 17:28:08 +01:00
.content-fullheight { flex-grow: 1;}
2017-12-29 00:40:57 +01:00
.contentheader {
width: 100%;
2017-12-30 23:11:51 +01:00
color: $COL_TEXT_DARK;
2017-12-29 00:40:57 +01:00
font-size: large;
}
.contentheader h1 {
font-family: $FONT_HEADER;
font-size: 32px;
font-weight: 900;
margin-bottom: 0;
}
@media(max-width:767px) { .contentheader h1 { font-size: 32px; } }
.contentheader hr {
margin: 0 0 25px 0;
display:block;
border:none;
color:white;
height:1px;
background: #CCCCCCFF;
background: -moz-linear-gradient( left, $COL_TEXT_NORMAL, $COL_TRANSPARENT);
background: -webkit-linear-gradient(left, $COL_TEXT_NORMAL 0%,$COL_TRANSPARENT 100%);
}
.blockcontent {
display: block;
width: 100%;
}
2018-01-03 00:08:42 +01:00
.generic_hidden { visibility: hidden !important; }
.generic_collapsed { visibility: collapse !important; display: none !important; }