mirror of
https://github.com/ION606/ProcGen.git
synced 2026-05-14 22:06:56 +00:00
76 lines
919 B
CSS
76 lines
919 B
CSS
body {
|
|
background-color: black;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
main {
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.gridRow {
|
|
display: flex;
|
|
}
|
|
|
|
.colBox {
|
|
background-color: black;
|
|
}
|
|
|
|
.dispGrid {
|
|
display: grid;
|
|
gap: 0px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.room {
|
|
background-color: white !important;
|
|
}
|
|
|
|
.path {
|
|
background-color: grey;
|
|
}
|
|
|
|
.edgePath {
|
|
background-color: blue;
|
|
}
|
|
|
|
.player {
|
|
background-color: red !important;
|
|
}
|
|
|
|
.hidebtn {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
z-index: 999;
|
|
font-size: 30px;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-color: transparent;
|
|
color: red;
|
|
border: none;
|
|
padding: auto;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.hidebtn:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
#expandingBox {
|
|
transform: translate(-50%, -50%);
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
.scaledup {
|
|
|
|
}
|
|
|
|
.visited {
|
|
background-color: grey;
|
|
} |