2019-03-09 17:07:00 +09:00
|
|
|
.link-card {
|
2019-07-04 21:28:26 +09:00
|
|
|
overflow: hidden;
|
|
|
|
|
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-09-07 19:57:44 +09:00
|
|
|
|
|
|
|
.card-spoiler-overlay {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-09-07 21:06:06 +09:00
|
|
|
cursor: pointer;
|
2019-09-07 19:57:44 +09:00
|
|
|
|
|
|
|
.warning-text {
|
|
|
|
padding: 10px;
|
2019-09-07 21:19:31 +09:00
|
|
|
user-select: none;
|
2019-09-07 19:57:44 +09:00
|
|
|
background-color: rgba(240, 240, 240, 0.8);
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-spoiler {
|
|
|
|
z-index: 1;
|
|
|
|
filter: blur(15px) grayscale(100%);
|
|
|
|
}
|
2019-06-11 22:16:40 +09:00
|
|
|
}
|