forked from Open-CT/openct-tasks
62 lines
1.0 KiB
CSS
62 lines
1.0 KiB
CSS
#conceptViewer {
|
|
display: table;
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
z-index: 100;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
#conceptViewer .content {
|
|
position: absolute;
|
|
left: 5%;
|
|
top: 5%;
|
|
width: 90%;
|
|
height: 90%;
|
|
background-color: #FFFFFF;
|
|
border: 4px solid;
|
|
}
|
|
|
|
#conceptViewer .exit {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
width: 30px;
|
|
height: 30px;
|
|
z-index: 101;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
line-height: 30px;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
#conceptViewer .navigation {
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 250px;
|
|
height: 100%;
|
|
overflow: auto;
|
|
border-right: 2px solid;
|
|
padding: 4px;
|
|
}
|
|
|
|
#conceptViewer .navigation .highlight {
|
|
background-color: yellow;
|
|
}
|
|
|
|
#conceptViewer .viewer {
|
|
margin-left: 250px;
|
|
height: 100%;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
#conceptViewer .viewerContent {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|