mathematical/web/index.scss
erius e4e17953e2 Added append_row, append_column, append_row_zeroes and append_column_zeroes methods to math::matrix::Matrix + some tests
Minor index.scss styles changes
Added prototype implementation for MatrixComponent in web crate
2024-05-24 02:42:09 +03:00

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;
}