mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00

* WebHost: allow newlines in data-tooltip * WebHost: Tooltips: strip surrounding whitespace * WebHost: unify tooltips behaviour * WebHost: unify labels around tooltips * WebHost: changing tooltips width to max-width to allow small tooltips to not have empty space. * Minor modifications to tooltips - Reduce tooltip target to (?) spans - Set fixed width of 260px on tooltips - Add space between : and (?) on player-settings - Removed cursor:pointer on tooltips - Fix labels for checkboxes on generate.html Co-authored-by: Chris Wilson <chris@legendserver.info>
59 lines
900 B
CSS
59 lines
900 B
CSS
#generate-game-wrapper{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#generate-game{
|
|
width: 990px;
|
|
min-height: 360px;
|
|
text-align: center;
|
|
}
|
|
|
|
#generate-game p{
|
|
text-align: left;
|
|
}
|
|
|
|
#generate-game button{
|
|
margin-top: 35px;
|
|
}
|
|
|
|
#generate-game-form-wrapper{
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#generate-game-tables-container{
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.table-wrapper select {
|
|
width: 200px;
|
|
}
|
|
|
|
.table-wrapper input:not([type]){
|
|
width: 200px;
|
|
}
|
|
|
|
#generate-game-form-wrapper table td{
|
|
text-align: left;
|
|
padding-right: 0.5rem;
|
|
vertical-align: top;
|
|
width: 230px;
|
|
}
|
|
|
|
#generate-form-button-row{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
#file-input{
|
|
display: none;
|
|
}
|