erius
e4e17953e2
Minor index.scss styles changes Added prototype implementation for MatrixComponent in web crate
18 lines
313 B
SCSS
18 lines
313 B
SCSS
$bg-color: #2b2927;
|
|
$text-color: #e2e19c;
|
|
$cell-color: #473b34;
|
|
|
|
html, body {
|
|
background-color: $bg-color;
|
|
color: $text-color;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
}
|
|
|
|
.matrix-cell {
|
|
background-color: $cell-color;
|
|
color: $text-color;
|
|
border: solid 1px black;
|
|
width: 30pt;
|
|
}
|