dyna3/app-proto/inversive-display/main.css

33 lines
387 B
CSS
Raw Normal View History

2024-08-21 20:01:33 +00:00
body {
margin-left: 20px;
margin-top: 20px;
color: #fcfcfc;
background-color: #202020;
}
#app {
display: flex;
flex-direction: column;
width: 600px;
}
canvas {
float: left;
background-color: #020202;
border-radius: 10px;
margin-top: 5px;
}
2024-08-26 08:47:53 +00:00
.control {
display: flex;
flex-direction: row;
width: 600px;
}
label {
width: 150px;
}
2024-08-21 20:01:33 +00:00
input {
2024-08-26 08:47:53 +00:00
flex-grow: 1;
2024-08-21 20:01:33 +00:00
}