69 lines
1.2 KiB
SCSS
Raw Normal View History

2019-10-21 15:04:10 +09:00
.bubble-main {
2019-11-13 17:46:25 +09:00
display:flex;
flex-direction: row;
2019-10-21 15:04:10 +09:00
padding: 14px;
2019-11-13 17:46:25 +09:00
.file-thumbimg{
display:inline-flex;
img {
2019-11-20 17:31:08 +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;
2019-11-13 17:46:25 +09:00
min-width:100px;
2019-11-11 11:42:08 +09:00
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%;
2019-10-24 10:07:30 +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;
&:last-child {
border-right: none;
2019-10-21 13:20:14 +09:00
}
.mat-button {
width: 100%;
2019-10-24 10:07:30 +09:00
height:100%;
2019-10-21 13:20:14 +09:00
display: block;
}
}
2019-11-11 11:42:08 +09:00
&.expired{
li{
width:100%;
white-space: nowrap;
color:#999999;
align-items: center;
line-height:40px;
}
}
2019-10-21 13:20:14 +09:00
}
2019-11-11 11:42:08 +09:00
}