filebrowser/frontend/src/css/_share.css

82 lines
1.3 KiB
CSS
Raw Normal View History

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;
}
}
.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;
}
2020-11-03 19:17:22 +00:00
.share__box__header {
padding: 1em;
2020-11-04 13:45:19 +00:00
text-align: center;
}
2020-11-04 13:45:19 +00:00
.share__box__icon i {
font-size: 10em;
color: #40c4ff;
}
2020-11-04 13:45:19 +00:00
.share__box__center {
text-align: center;
}
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 {
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 {
width: 50%;
}
.share__box__items #listing.list .item .modified {
width: 25%;
}
.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
}