Files
Web-NibblePoker/tools/items/formula-wizard/styles.css
Herwin 2dd262fe2c Continued work on formula wizard
Update strings.json, code.js, and 4 more files...
2023-08-05 19:04:27 +02:00

45 lines
869 B
CSS

/* https://cssflex-generator.netlify.app/ */
.fw-variants {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
align-content: center;
width: 100%;
overflow: auto;
flex-direction: row;
}
.fw-variants div, .fw-variants button {
margin: 5px;
}
.fw-workbench-name {
border-bottom: 1px solid;
}
.fw-workbench-io-grid {
display: grid;
grid-template-columns: 33% 33% 33%;
grid-template-rows: auto;
gap: 0 0;
grid-template-areas: ". . .";
}
/* Thin desktop */
@media only screen and (max-width: 992px) {
.fw-workbench-io-grid {
grid-template-columns: 50% 50%;
grid-template-areas: ". .";
}
}
/* Mobile */
@media only screen and (max-width: 768px) {
.fw-workbench-io-grid {
grid-template-columns: 100%;
grid-template-areas: ".";
}
}