2020-07-21 10:50:35 +02:00
|
|
|
.first-entry {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2020-09-14 19:09:31 +02:00
|
|
|
min-height: 320px;
|
2020-11-17 11:26:27 +01:00
|
|
|
margin: var(--gap) 0 calc(var(--gap) * 2) 0
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 08:15:19 +01:00
|
|
|
@media screen and (max-width:600px) {
|
2020-07-25 09:58:07 +02:00
|
|
|
.first-entry {
|
2020-11-17 08:15:19 +01:00
|
|
|
min-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;
|
2020-11-17 08:15:19 +01:00
|
|
|
-webkit-line-clamp: 3
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.first-entry .entry-header h2 {
|
2020-12-04 11:59:56 +01:00
|
|
|
font-size: 34px;
|
|
|
|
line-height: 1.3
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.first-entry .entry-content {
|
2020-09-20 08:24:41 +02:00
|
|
|
margin: 14px 0;
|
2020-07-21 10:50:35 +02:00
|
|
|
font-size: 16px;
|
2020-11-17 08:15:19 +01:00
|
|
|
-webkit-line-clamp: 3
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.first-entry .entry-footer {
|
2020-11-17 08:15:19 +01:00
|
|
|
font-size: 14px
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
2020-10-08 12:20:20 +02:00
|
|
|
.home-info .entry-content {
|
2020-11-17 08:15:19 +01:00
|
|
|
-webkit-line-clamp: unset
|
2020-10-08 12:20:20 +02:00
|
|
|
}
|
|
|
|
|
2020-07-21 10:50:35 +02:00
|
|
|
.post-entry {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: var(--gap);
|
|
|
|
padding: var(--gap);
|
|
|
|
background: var(--entry);
|
|
|
|
border-radius: var(--radius);
|
2021-01-11 15:45:04 +01:00
|
|
|
transition: transform .1s;
|
|
|
|
border: 1px solid var(--border);
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.post-entry:active {
|
2020-11-17 08:15:19 +01:00
|
|
|
transform: scale(.96)
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
2020-10-10 16:10:37 +02:00
|
|
|
.tag-entry .entry-cover {
|
2020-11-17 08:15:19 +01:00
|
|
|
display: none
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry-header h2 {
|
2020-11-17 08:15:19 +01:00
|
|
|
font-size: 24px
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry-content {
|
2020-09-20 08:24:41 +02:00
|
|
|
margin: 8px 0;
|
2020-07-21 10:50:35 +02:00
|
|
|
color: var(--secondary);
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.6;
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
2020-11-17 08:15:19 +01:00
|
|
|
-webkit-line-clamp: 2
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry-footer {
|
|
|
|
color: var(--secondary);
|
2020-11-17 08:15:19 +01:00
|
|
|
font-size: 13px
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry-link {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2020-11-17 08:15:19 +01:00
|
|
|
bottom: 0
|
2020-07-24 17:16:33 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 08:15:19 +01:00
|
|
|
.entry-cover,
|
2020-07-24 17:16:33 +02:00
|
|
|
.entry-isdraft {
|
|
|
|
font-size: 14px;
|
2020-11-17 08:15:19 +01:00
|
|
|
color: var(--secondary)
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-isdraft {
|
|
|
|
display: inline
|
2020-08-27 16:33:00 +02:00
|
|
|
}
|
|
|
|
|
2020-10-04 15:14:13 +02:00
|
|
|
.entry-cover {
|
|
|
|
margin-bottom: var(--gap);
|
2020-11-17 08:15:19 +01:00
|
|
|
text-align: center
|
2020-10-04 15:14:13 +02:00
|
|
|
}
|
|
|
|
|
2020-09-14 14:15:22 +02:00
|
|
|
.entry-cover img {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
pointer-events: none;
|
2020-11-17 08:15:19 +01:00
|
|
|
width: 100%
|
2020-09-14 14:15:22 +02:00
|
|
|
}
|
2020-10-05 11:26:06 +02:00
|
|
|
|
|
|
|
.entry-cover a {
|
|
|
|
color: var(--secondary);
|
2020-11-17 08:15:19 +01:00
|
|
|
box-shadow: 0 1px 0 var(--primary)
|
2020-10-05 11:26:06 +02:00
|
|
|
}
|