1
0
www.mikescher.com/www/data/css/styles_main.scss
Mike Schwörer 3ecbaf0bff
style unification
(no more dropshadows)
(no more rounded corners)
2018-01-26 19:19:56 +01:00

49 lines
744 B
SCSS

@import 'styles_config';
.index_pnl_base {
display: inline-flex;
flex-direction: column;
border: 1px solid black;
margin: 15px;
width: 652px;
}
.index_pnl_header {
display: flex;
align-items: center;
justify-content: center;
padding: 4px;
background: #AAA;
}
.index_pnl_header a {
color: $COL_TEXT_DARK_DARKER;
text-decoration: none;
font-family: $FONT_HEADER;
font-size: 22px;
font-weight: 900;
}
@include rdmedia_range(0,1) { .index_pnl_header a { font-size: 16px; } }
.index_pnl_header a:hover {
text-decoration: underline;
}
.index_pnl_content {
display: flex;
flex-direction: column;
background: #DDD;
padding: 6px;
}
@include rdmedia_range(0,1) {
.index_pnl_base { width: 330px; }
}