2019-03-09 17:07:00 +09:00
|
|
|
.link-card {
|
2019-04-14 23:16:05 +09:00
|
|
|
.row > div {
|
2019-03-09 17:07:00 +09:00
|
|
|
max-height: 400px;
|
|
|
|
overflow: hidden;
|
2019-04-14 23:16:05 +09:00
|
|
|
}
|
2019-03-09 17:07:00 +09:00
|
|
|
|
2019-04-14 23:16:05 +09:00
|
|
|
.row > div:first-child {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&:not([display=none]) {
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.row > div:last-child {
|
2019-03-09 17:07:00 +09:00
|
|
|
// 省略を表す影を付けるやつ
|
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2019-03-10 21:49:23 +09:00
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
content: '';
|
2019-06-07 22:10:32 +09:00
|
|
|
background: linear-gradient(rgba(255, 255, 255, 0) 320px, white);
|
2019-03-09 17:07:00 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-text {
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
2019-06-11 22:16:40 +09:00
|
|
|
}
|