salix/modules/claim/front/photos/style.scss

48 lines
919 B
SCSS
Raw Normal View History

@import "./variables";
2020-01-10 10:29:11 +00:00
vn-claim-photos {
height: 100%;
2019-10-03 09:37:44 +00:00
.drop-zone {
color: $color-font-secondary;
box-sizing: border-box;
2020-04-02 12:20:57 +00:00
border-radius: 8px;
2019-10-03 09:37:44 +00:00
text-align: center;
2020-01-08 16:03:08 +00:00
min-height: 100%;
.empty-rows {
2020-04-02 12:20:57 +00:00
padding: 80px $spacing-md;
2020-04-02 13:11:42 +00:00
font-size: 1.375rem
2020-01-08 16:03:08 +00:00
}
2019-10-03 09:37:44 +00:00
vn-icon {
2020-04-02 13:11:42 +00:00
font-size: 3rem
2019-10-03 09:37:44 +00:00
}
}
.photo-list {
padding: $spacing-md;
min-height: 100%;
.photo {
2020-04-02 12:52:02 +00:00
width: 512px;
height: 288px;
}
}
2022-04-08 12:33:00 +00:00
2022-04-07 12:12:56 +00:00
.video {
2022-04-08 12:33:00 +00:00
width: 100%;
height: 100%;
object-fit: cover;
cursor: pointer;
2022-04-07 12:12:56 +00:00
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
2022-04-08 12:33:00 +00:00
0 3px 1px -2px rgba(0,0,0,.2),
0 1px 5px 0 rgba(0,0,0,.12);
2022-04-07 12:12:56 +00:00
border: 2px solid transparent;
}
2022-04-08 12:33:00 +00:00
.video:hover {
border: 2px solid $color-primary
}
}