1
0
This commit is contained in:
2017-12-29 00:40:57 +01:00
parent 0fc19d3fcf
commit 3f090d3f4b
10 changed files with 592 additions and 284 deletions

View File

@@ -0,0 +1,44 @@
@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; } }