Implement initial, static version of input GUI

This commit is contained in:
2022-03-14 11:10:51 -05:00
parent 92d30460b9
commit 0e53a4334e
30 changed files with 28785 additions and 0 deletions

48
relog-web/src/index.css Normal file
View File

@@ -0,0 +1,48 @@
:root {
--site-width: 1200px;
--box-border: 1px solid rgba(0, 0, 0, 0.2);
--box-shadow: 0px 2px 4px -3px rgba(0, 0, 0, 0.2);
--border-radius: 4px;
}
html, body {
margin: 0;
padding: 0;
border: 0;
}
body {
background-color: #f6f6f6;
color: rgba(0, 0, 0, 0.95);
}
#content {
max-width: var(--site-width);
min-width: 900px;
margin: 0 auto;
padding: 0 6px;
}
.react-flow__node.selected {
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
border-width: 2px !important;
margin-top: -1px !important;
margin-left: -1px !important;
border-radius: 8px !important;
font-weight: bold;
}
.react-flow__handle {
width: 8px !important;
height: 8px !important;
background-color: white !important;
border: 1px solid black !important;
}
.react-flow__handle-right {
right: -5px !important;
}
.react-flow__handle-left {
left: -5px !important;
}