forum-logic/src/index.css

109 lines
1.4 KiB
CSS

body {
background-color: #09343f;
color: #b6b6b6;
font-family: monospace;
font-size: 12pt;
margin: 1em;
}
a {
color: #c6f4ff;
}
a:visited {
color: #85b7c3;
}
.box {
width: fit-content;
}
.box .name {
width: 15em;
font-weight: bold;
text-align: right;
margin-right: 6pt;
}
.box .value {
width: fit-content;
}
.flex {
display: flex;
}
.flex-center {
align-items: center;
}
.monospace {
font-family: monospace;
}
.dim {
opacity: 0.25;
}
.padded {
padding: 20px;
}
.top-rail {
position: sticky;
top: 0;
left: 0;
width: 100%;
height: 0;
}
.scene-controls {
position: relative;
left: 12em;
top: -0.5em;
}
svg {
width: 800px;
}
th {
text-align: left;
padding: 10px;
}
td {
background-color: #0c2025;
}
.edge > rect {
fill: #216262 !important;
}
button {
background-color: #c6f4ff;
border-color: #b6b6b6;
}
input {
margin: 1pt;
}
button, input[type=file] {
border-radius: 4pt;
margin: 4pt;
}
button:disabled {
background-color: #2a535e;
color: #919191;
}
label {
font-family: monospace;
font-weight: bold;
font-size: smaller;
color: #999999;
}
label > div {
display: inline-block;
min-width: 5em;
margin-right: 4pt;
}
table {
width: 100%;
}
form {
min-width: 20em;
}
span.small {
font-size: smaller;
}
.visually-hidden:not(:focus):not(:active) {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}