2019-11-08 16:02:42 +09:00

51 lines
896 B
SCSS

.ucap-image-viewer-container {
width: 100%;
height: 100%;
.ucap-image-viewer-header {
width: 100%;
height: 60px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
background-color: #333333;
.ucap-image-viewer-icon {
margin-right: 10px;
}
.ucap-image-viewer-title {
font-size: 16px;
}
.ucap-image-viewer-spacer {
flex: 1 1 auto;
}
.stroke-bar {
width: 1px;
height: 30px;
background-color: rgba(256, 256, 256, 0.3);
margin: 0 10px;
}
.ucap-image-viewer-action {
&:hover {
opacity: 0.7;
}
}
}
.ucap-image-viewer-body {
position: relative;
width: 100%;
height: calc(100% - 60px);
.ucap-image-viewer-image-wrapper {
height: 100%;
padding: 20px;
background-color: rgba(0, 0, 0, 0.7);
img {
height: inherit;
}
}
}
}