2020-11-03 19:17:22 +00:00
|
|
|
.share {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 736px) {
|
|
|
|
.share {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-05 16:12:09 +00:00
|
|
|
.share__box {
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 0.2em;
|
2020-11-03 19:17:22 +00:00
|
|
|
margin: 5px;
|
|
|
|
overflow: hidden;
|
2019-01-05 16:12:09 +00:00
|
|
|
}
|
|
|
|
|
2020-11-03 19:17:22 +00:00
|
|
|
.share__box__header {
|
2019-01-05 16:12:09 +00:00
|
|
|
padding: 1em;
|
2020-11-04 13:45:19 +00:00
|
|
|
text-align: center;
|
2019-01-05 16:12:09 +00:00
|
|
|
}
|
|
|
|
|
2020-11-04 13:45:19 +00:00
|
|
|
.share__box__icon i {
|
|
|
|
font-size: 10em;
|
|
|
|
color: #40c4ff;
|
2019-01-05 16:12:09 +00:00
|
|
|
}
|
|
|
|
|
2020-11-04 13:45:19 +00:00
|
|
|
.share__box__center {
|
|
|
|
text-align: center;
|
2019-01-05 16:12:09 +00:00
|
|
|
}
|
2020-11-03 19:17:22 +00:00
|
|
|
|
|
|
|
.share__box__info {
|
2021-03-25 15:47:49 +00:00
|
|
|
flex: 1 1 18em;
|
2020-11-03 19:17:22 +00:00
|
|
|
}
|
|
|
|
|
2020-11-04 13:45:19 +00:00
|
|
|
.share__box__element {
|
|
|
|
padding: 1em;
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2021-04-23 11:55:56 +00:00
|
|
|
.share__box__element .button {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share__box__element .button i {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2020-11-03 19:17:22 +00:00
|
|
|
.share__box__items {
|
|
|
|
text-align: left;
|
2020-11-04 13:45:19 +00:00
|
|
|
flex: 10 0 25em;
|
2020-11-03 19:17:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.share__box__items #listing.list .item {
|
2020-12-28 16:35:29 +00:00
|
|
|
cursor: pointer;
|
2020-11-03 19:17:22 +00:00
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
2020-11-04 13:45:19 +00:00
|
|
|
border-bottom: 0;
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
2020-11-03 19:17:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.share__box__items #listing.list .item .name {
|
2020-12-28 16:35:29 +00:00
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share__box__items #listing.list .item .modified {
|
|
|
|
width: 25%;
|
2021-03-02 11:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.share__wrong__password {
|
|
|
|
background: var(--red);
|
|
|
|
color: #fff;
|
|
|
|
padding: .5em;
|
|
|
|
text-align: center;
|
|
|
|
animation: .2s opac forwards;
|
2021-02-16 15:39:11 +00:00
|
|
|
}
|