mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
* Graffiti... but epic * welp * remove extra * height * walls * stuff * Proper transparency support (#14) * true transparency * revert accidental .controlColumnNarrow, it's just a gist thing * fix --------- Co-authored-by: jellyveggie2 <78439377+jellyveggie2@users.noreply.github.com>
112 lines
1.4 KiB
CSS
112 lines
1.4 KiB
CSS
|
|
.mainPanel {
|
|
height:650px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.mainPanel > * {
|
|
white-space: normal;
|
|
vertical-align: top;
|
|
display: inline-block;
|
|
}
|
|
|
|
.controlColumn {
|
|
overflow: auto;
|
|
height:100%;
|
|
width: 250px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.controlColumn input[type="text"] {
|
|
width:100%;
|
|
}
|
|
.controlColumn textarea {
|
|
width:100%;
|
|
max-width:100%;
|
|
min-width:100%;
|
|
}
|
|
|
|
.colorHint {
|
|
width: 22px;
|
|
}
|
|
|
|
.navigationBar a {
|
|
width: 32.3%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.paintColumn {
|
|
min-width: 320px;
|
|
max-width: 560px;
|
|
}
|
|
|
|
.canvasPanel {
|
|
border: 1px solid #40628a;
|
|
margin: 19px;
|
|
background-color: #202020;
|
|
line-height: 0px;
|
|
}
|
|
|
|
.canvasPanel p {
|
|
line-height: normal;
|
|
position: absolute;
|
|
width: 130px;
|
|
margin: 10px;
|
|
z-index: 0;
|
|
}
|
|
|
|
.canvasPanel canvas {
|
|
background: #0000;
|
|
z-index: 1;
|
|
position: relative;
|
|
}
|
|
|
|
.paintPanel {
|
|
margin: 20px;
|
|
}
|
|
|
|
.paintPanel label {
|
|
margin-right:20px;
|
|
}
|
|
.colorPanel {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.selectedColor {
|
|
float: left;
|
|
}
|
|
|
|
.palette {
|
|
overflow: auto;
|
|
}
|
|
|
|
.selectedColor div {
|
|
width: 58px;
|
|
height: 58px;
|
|
border: 1px solid #000000;
|
|
}
|
|
|
|
.palette div.paletteColor {
|
|
width: 28px;
|
|
height: 28px;
|
|
display: inline-block;
|
|
border: 1px solid #000000;
|
|
}
|
|
|
|
.palette div.paletteButton {
|
|
background: #40628a;
|
|
}
|
|
|
|
.palette div.paletteButton:hover {
|
|
background: #507aac;
|
|
}
|
|
|
|
.paletteButton .uiIcon16 {
|
|
margin: 6px;
|
|
}
|
|
|
|
.toolPanel input[type="text"] {
|
|
width: 5ch;
|
|
text-align:center
|
|
}
|