cxgraph/cxgraph-web/style.css

66 lines
751 B
CSS
Raw Normal View History

2023-06-09 00:25:06 +00:00
* {
font-family: monospace;
}
2023-06-07 22:58:20 +00:00
body, html {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.canvas-container {
position: absolute;
left: 0px;
top: 0px;
}
canvas {
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
}
#canvas {
z-index: 0;
}
#grid_canvas {
z-index: 1;
pointer-events: none;
}
.menu {
position: absolute;
left: 0px;
top: 0px;
margin: 10px;
padding: 10px;
background: #334;
color: #fff;
z-index: 10;
}
#source_text {
2023-06-09 00:25:06 +00:00
min-width: max-content;
2023-06-07 22:58:20 +00:00
width: 300px;
height: 500px;
}
2023-06-09 00:25:06 +00:00
#div_error_msg {
color: #f9a;
}
div.menu > details {
max-width: min-content;
}
details > *:not(summary) {
padding-top: 2px;
padding-bottom: 2px;
padding-left: 8px;
border-left: 1px solid #fff;
}