2020-01-31 11:29:06 +09:00
|
|
|
$tablet-s-width: 768px;
|
|
|
|
|
2019-10-21 15:04:10 +09:00
|
|
|
.bubble-main {
|
2020-01-31 11:29:06 +09:00
|
|
|
display: flex;
|
2019-11-13 17:46:25 +09:00
|
|
|
flex-direction: row;
|
2019-10-21 15:04:10 +09:00
|
|
|
padding: 14px;
|
2020-01-31 11:29:06 +09:00
|
|
|
.file-thumbimg {
|
|
|
|
display: inline-flex;
|
2019-11-13 17:46:25 +09:00
|
|
|
img {
|
2020-01-31 11:29:06 +09:00
|
|
|
height: 140px;
|
2019-11-13 17:46:25 +09:00
|
|
|
padding-right: 20px;
|
|
|
|
background-repeat: no-repeat;
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
|
|
|
}
|
2019-10-21 15:04:10 +09:00
|
|
|
.file-info {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: left;
|
|
|
|
line-height: 1.6em;
|
2020-01-31 11:29:06 +09:00
|
|
|
min-width: 100px;
|
|
|
|
margin-top: 10px;
|
2019-10-21 15:04:10 +09:00
|
|
|
.file-name {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-flex;
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
2019-10-21 15:04:10 +09:00
|
|
|
.file-size {
|
|
|
|
display: inline-flex;
|
|
|
|
font-size: 11px;
|
|
|
|
color: #666666;
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
2019-10-21 15:04:10 +09:00
|
|
|
.file-ext {
|
|
|
|
font-size: 12px;
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-21 15:04:10 +09:00
|
|
|
.btn-box {
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
border-top: 1px solid #dddddd;
|
|
|
|
display: flex;
|
|
|
|
ul {
|
|
|
|
width: 100%;
|
|
|
|
li {
|
|
|
|
width: 50%;
|
2020-01-31 11:29:06 +09:00
|
|
|
height: 100%;
|
2019-10-21 15:04:10 +09:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
2019-10-21 13:20:14 +09:00
|
|
|
align-items: center;
|
2019-10-21 15:04:10 +09:00
|
|
|
font-size: 13px;
|
|
|
|
border-right: 1px solid #dddddd;
|
2020-01-31 11:29:06 +09:00
|
|
|
@media screen and (max-width: #{$tablet-s-width}) {
|
|
|
|
width: 30%;
|
|
|
|
}
|
2019-10-21 15:04:10 +09:00
|
|
|
&:last-child {
|
|
|
|
border-right: none;
|
2020-01-31 11:29:06 +09:00
|
|
|
@media screen and (max-width: #{$tablet-s-width}) {
|
|
|
|
width: 70%;
|
|
|
|
}
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
|
|
|
.mat-button {
|
|
|
|
width: 100%;
|
2020-01-31 11:29:06 +09:00
|
|
|
height: 100%;
|
2019-10-21 13:20:14 +09:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2020-01-31 11:29:06 +09:00
|
|
|
&.expired {
|
|
|
|
li {
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: #999999;
|
|
|
|
align-items: center;
|
|
|
|
line-height: 40px;
|
2019-11-11 11:42:08 +09:00
|
|
|
}
|
|
|
|
}
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
2020-01-31 11:29:06 +09:00
|
|
|
}
|