cxgraph/cxgraph-web/style.css

110 lines
1.4 KiB
CSS
Raw Normal View History

2023-06-09 00:25:06 +00:00
* {
font-family: monospace;
2023-06-14 04:03:41 +00:00
font-size: 16px;
2023-06-09 00:25:06 +00:00
}
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;
}
2023-06-14 04:03:41 +00:00
canvas, #overlay {
2023-06-07 22:58:20 +00:00
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
}
#canvas {
z-index: 0;
}
2023-06-14 04:03:41 +00:00
#overlay {
2023-06-07 22:58:20 +00:00
z-index: 1;
pointer-events: none;
}
2023-06-14 04:03:41 +00:00
#overlay_points {
pointer-events: all;
}
.menus {
2023-06-07 22:58:20 +00:00
position: absolute;
left: 0px;
top: 0px;
2023-06-14 04:03:41 +00:00
right: 0px;
pointer-events: none;
display: flex;
flex-direction: row;
justify-content: space-between;
z-index: 10;
}
.menu {
pointer-events: all;
2023-06-07 22:58:20 +00:00
margin: 10px;
padding: 10px;
background: #334;
color: #fff;
2023-06-14 04:03:41 +00:00
height: fit-content;
box-shadow: 0 0 5px 1px #00000088;
}
details > *:not(summary) {
padding-top: 2px;
padding-bottom: 2px;
padding-left: 8px;
border-left: 1px solid #fff;
}
summary {
padding-bottom: 5px;
2023-06-07 22:58:20 +00:00
}
#source_text {
2023-06-15 04:27:09 +00:00
width: 400px;
height: 150px;
2023-06-14 04:03:41 +00:00
font-size: 15px;
2023-06-07 22:58:20 +00:00
}
2023-06-09 00:25:06 +00:00
#div_error_msg {
color: #f9a;
2023-06-15 04:27:09 +00:00
white-space: pre-line;
2023-06-09 00:25:06 +00:00
}
2023-06-14 04:03:41 +00:00
input {
color: #fff;
background: #667;
border: none;
border-radius: 2px;
margin-top: 2px;
margin-bottom: 2px;
padding-left: 3px;
padding-right: 3px;
2023-06-09 00:25:06 +00:00
}
2023-06-14 04:03:41 +00:00
input, textarea{
box-shadow: 0 0 5px 1px #00000044;
}
input[type=number], input[type=text] {
border-bottom: 2px solid #def;
}
input:hover {
background: #889;
}
input[type=button]:active {
background: #667;
2023-06-09 00:25:06 +00:00
}