minesweeper/scss/index.scss

86 lines
2.3 KiB
SCSS

body {
font-family: monospace;
padding: 2em;
margin: 0;
background-color: #111111;
color: white;
// * {
// border: 1px solid white;
// }
h1 {
text-align: center;
}
div#main {
height: 100%;
width: max-content;
display: grid;
grid-template-columns: auto auto;
column-gap: 1em;
margin: 0 auto;
div {
padding: 1em;
border-radius: 0.25em;
background-color: #212121;
&#board {
text-align: center;
width: min-content;
display: grid;
grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
column-gap: 3px;
row-gap: 3px;
span.cell {
color: white;
text-align: center;
width: 1em;
height: 1em;
padding: 0.4em;
border-radius: 0.1em;
background-color: #303030;
font-size: large;
&.discovered {
background-color: #424242;
}
&.bomb {
background-color: #FC5130;
}
&.flag {
background-color: #51CB20;
}
}
}
&#log {
font-size: 12px;
width: 20vw;
h2 {
text-align: center;
}
span {
display: block;
width: 100%;
color: darkgray;
padding-bottom: 0.5em;
&.error {
color: red;
}
&.alert {
color: orange;
}
&.success {
color: cyan;
}
}
}
}
}
footer {
position: absolute;
bottom: 1em;
left: 1em;
color: darkgray;
height: 1em;
a {
color: white;
}
}
}