2019-08-11 19:36:19 +02:00
|
|
|
.post-warp {
|
|
|
|
|
|
|
|
.archive-item {
|
|
|
|
margin-left: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.categories-card {
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 3em;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 0 2.5em;
|
|
|
|
line-height: 1.6em;
|
|
|
|
|
|
|
|
.card-item {
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: left;
|
|
|
|
width: 45%;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
margin-top: 2em;
|
|
|
|
min-height: 16em;
|
|
|
|
padding: 0 2%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.categories {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.archive-item-link {
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 95%;
|
|
|
|
|
|
|
|
&:hover {
|
2019-08-16 21:40:34 +02:00
|
|
|
color: $global-link-hover-color;
|
2019-08-11 19:36:19 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme & {
|
2019-08-16 21:40:34 +02:00
|
|
|
color: $global-link-color-dark;
|
2019-08-11 19:36:19 +02:00
|
|
|
text-decoration: none;
|
|
|
|
transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
|
|
|
|
|
|
|
|
&:hover {
|
2019-08-16 21:40:34 +02:00
|
|
|
color: $global-link-hover-color-dark;
|
2019-08-11 19:36:19 +02:00
|
|
|
text-decoration: none;
|
|
|
|
transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.archive-item-date {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
2019-08-16 21:40:34 +02:00
|
|
|
color: $global-font-secondary-color;
|
2019-08-11 19:36:19 +02:00
|
|
|
|
|
|
|
.dark-theme & {
|
2019-08-16 21:40:34 +02:00
|
|
|
color: $global-font-secondary-color-dark;
|
2019-08-11 19:36:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.more-post {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.categories {
|
|
|
|
h3 {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
float: right;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
}
|