mathematical-web/index.scss

30 lines
541 B
SCSS
Raw Permalink Normal View History

$bg-color: #2b2927;
$text-color: #e2e19c;
$cell-color: #473b34;
body {
background-color: $bg-color;
color: $text-color;
}
.matrix {
display: grid;
gap: 50px;
grid-template-columns: auto 100px;
grid-template-rows: auto 100px;
justify-content: start;
input {
background-color: $cell-color;
color: $text-color;
border: solid 1px black;
width: 30pt;
}
button {
background-color: $cell-color;
color: $text-color;
border: solid 1px black;
}
}