You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
987 B

7 months ago
:root {
--white: #FFFFFF;
--button: #DDE4E7;
--hover: #B3BBBD;
--active: #8F9598;
--background: #949C9E;
--black: #000000;
}
7 months ago
@font-face {
font-family: 'VT323';
src: url('fonts/VT323-Regular.ttf') format('truetype');
}
div {
box-sizing: border-box;
}
body {
margin: 0;
overflow: hidden;
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
font-family: 'VT323', monospace;
7 months ago
background-color: var(--background);
color: var(--black);
7 months ago
}
7 months ago
.bar {
7 months ago
z-index: 2;
7 months ago
background-color: var(--button);
7 months ago
display: flex;
gap: 10px;
justify-content: flex-start;
7 months ago
flex-wrap: wrap;
7 months ago
padding: 10px;
7 months ago
}
#row {
display: flex;
flex-direction: row;
flex-grow: 1;
7 months ago
}
#menu-bar, #color-bar {
flex-direction: row;
7 months ago
}
#tool-bar, #layer-bar {
flex-direction: column;
}
7 months ago
#studio {
7 months ago
flex-grow: 1;
height: 100%;
border: 1px solid;
cursor: crosshair;
}
7 months ago
#easel {
7 months ago
position: absolute;
border: 1px solid;
7 months ago
z-index: -1;
7 months ago
}
7 months ago
canvas {
position: absolute;
top: 0;
left: 0;
7 months ago
}