You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
955 B

.css-grid {
grid-template-columns: repeat(1,minmax(0,1fr));
gap: 10px;
display: grid;
width: 500px;
}
h1 {
margin: 5px 10px;
padding-inline-end: 300px;
font-family: 'VT323', monospace;
font-size: 24px;
color: #404040;
}
.content {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.slotSpace {
margin: 10px 10px;
display: flex;
flex-wrap: wrap;
}
.css-inv {
grid-template-columns: repeat(6,minmax(0,1fr));
gap: 10px;
width: 410px;
background: #c6c6c6;
border-radius: 3px;
box-shadow: 5px 5px 0px #555555, inset 4px 4px 0px #fefefe;
padding-top: 5px;
padding-left: 5px;
margin-bottom: 10px;
}
.actions {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
.body {
display: flex;
background: #ccc;
box-sizing: border-box;
width: 100%;
height: 80vh;
}