2020-07-21 10:50:35 +02:00
|
|
|
/* Post entry
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.first-entry {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
height: 320px;
|
|
|
|
margin-bottom: var(--header-height);
|
|
|
|
}
|
|
|
|
|
2020-07-25 09:58:07 +02:00
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.first-entry {
|
2020-07-25 13:29:54 +02:00
|
|
|
height: 260px;
|
2020-07-25 09:58:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-21 10:50:35 +02:00
|
|
|
.first-entry .entry-header {
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.first-entry .entry-header h2 {
|
2020-07-25 10:04:23 +02:00
|
|
|
font-size: 34px;
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.first-entry .entry-content {
|
|
|
|
margin-top: 14px;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
font-size: 16px;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.first-entry .entry-footer {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-entry {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: var(--gap);
|
|
|
|
padding: var(--gap);
|
|
|
|
background: var(--entry);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
transition: transform 0.1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-entry:active {
|
|
|
|
transform: scale(0.96);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag-entry .entry-content,
|
|
|
|
.tag-entry .entry-footer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-header h2 {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-content {
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.6;
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-footer {
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-link {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2020-07-24 17:16:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry-isdraft {
|
|
|
|
display: inline;
|
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 14px;
|
2020-07-25 09:58:07 +02:00
|
|
|
}
|