68 lines
1.3 KiB
SCSS
68 lines
1.3 KiB
SCSS
.ucap-binary-viewer-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.ucap-binary-viewer-header {
|
|
width: 100%;
|
|
height: 60px;
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
|
|
background-color: #333333;
|
|
color: #ffffff;
|
|
|
|
.ucap-binary-viewer-icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.ucap-binary-viewer-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.ucap-binary-viewer-spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.stroke-bar {
|
|
width: 1px;
|
|
height: 30px;
|
|
background-color: rgba(256, 256, 256, 0.3);
|
|
margin: 0 10px;
|
|
}
|
|
.ucap-binary-viewer-action {
|
|
margin-left: auto;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-left: 10px;
|
|
&:hover {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ucap-binary-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.9);
|
|
}
|
|
.circle-box {
|
|
display: flex;
|
|
width: 140px;
|
|
height: 140px;
|
|
border-radius: 50%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 2px solid #ffffff;
|
|
background-color: rgba(256, 256, 256, 0.7);
|
|
}
|
|
.guide-msg {
|
|
font-size: 16px;
|
|
margin: 30px;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
}
|