48 lines
960 B
Plaintext
48 lines
960 B
Plaintext
#root-backpack {
|
|
top: 10px;
|
|
right: 10px;
|
|
height: 800px;
|
|
width: 700px;
|
|
position: absolute;
|
|
}
|
|
|
|
#options {
|
|
flex-basis: 60px;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
margin-top: 40px;
|
|
margin-bottom: 5px;
|
|
border-bottom-width: 1px;
|
|
border-left-color: rgb(88, 88, 88);
|
|
border-right-color: rgb(88, 88, 88);
|
|
border-top-color: rgb(88, 88, 88);
|
|
border-bottom-color: rgb(88, 88, 88);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
#slots {
|
|
flex-direction: row;
|
|
flex-basis: 100%;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
margin-top: 5px;
|
|
margin-bottom: 15px;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
#slots > .slot {
|
|
margin-left: 1px;
|
|
margin-right: 1px;
|
|
margin-top: 1px;
|
|
margin-bottom: 1px;
|
|
}
|