+
{{ getAbstractContent(item) }}
@@ -400,36 +400,30 @@ export default {
}
.content {
- margin: 5px;
-
- .title {
- margin-top: 3rem;
-
- .title-link {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- font-size: 1.8rem;
- font-weight: bolder;
- line-height: 1.2;
- text-decoration: none;
- color: $link-title;
- transition: color 0.3s ease-in;
-
- &:hover {
- transition: color 0.3s ease-out;
- color: $link-title-hover;
- }
+ .title-link {
+ font-size: 1.8rem;
+ font-weight: bolder;
+ line-height: 1.2;
+ text-decoration: none;
+ color: $link-title;
+ transition: color 0.3s ease-in;
+
+ &:hover {
+ transition: color 0.3s ease-out;
+ color: $link-title-hover;
}
}
.abstract {
width: 100%;
- margin-bottom: 1rem;
font-size: $font-small;
color: $black-grey;
line-height: 1.5;
letter-spacing: 0.02rem;
+ display: -webkit-box;
+ -webkit-line-clamp: 3;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
.operate-area {