45 lines
738 B
SCSS
45 lines
738 B
SCSS
|
@import 'styles_config';
|
||
|
|
||
|
|
||
|
.bloglistelem_container {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.bloglistelem {
|
||
|
width: 100%;
|
||
|
|
||
|
border: solid 1px #444;
|
||
|
margin: 10px 5px;
|
||
|
color: #333;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.bloglistelem:hover {
|
||
|
box-shadow: 0 0 4px #000000;
|
||
|
}
|
||
|
|
||
|
.ble_blog { background-color: #BBB; }
|
||
|
.ble_log { background-color: #DDD; }
|
||
|
|
||
|
.ble_blog .ble_date { background-color: #AAA; }
|
||
|
.ble_log .ble_date { background-color: #CCC; }
|
||
|
|
||
|
.ble_date {
|
||
|
background-color: #AAA;
|
||
|
padding: 2px;
|
||
|
font-size: 0.8em;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.ble_title {
|
||
|
font-weight: bold;
|
||
|
font-size: 1.2em;
|
||
|
text-align: left;
|
||
|
margin: 2px 0 2px 10px;
|
||
|
}
|
||
|
|
||
|
@media(max-width:767px) { .ble_title { font-size: 1.25em; } }
|
||
|
|