| summaryrefslogtreecommitdiff | 
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2018-04-17 18:57:52 +0200 | 
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2018-04-17 18:57:52 +0200 | 
| commit | 0bbcb6c8429bb9a25aafe5595129470f1c30ced9 (patch) | |
| tree | 749ffda0cced822c22c65ee6170a705ab21811aa /src/battlemap/www/style.css | |
| parent | 3a5dda503260eb990a14f8f73f5662dc51c95e1a (diff) | |
Changing the layout...
Diffstat (limited to 'src/battlemap/www/style.css')
| -rw-r--r-- | src/battlemap/www/style.css | 50 | 
1 files changed, 31 insertions, 19 deletions
| diff --git a/src/battlemap/www/style.css b/src/battlemap/www/style.css index 4fcf666..b3a9e46 100644 --- a/src/battlemap/www/style.css +++ b/src/battlemap/www/style.css @@ -1,45 +1,57 @@  /******************************************************************************/  /** LAYOUT ********************************************************************/  /******************************************************************************/ -.battlemap-left-panel + +.fullscreen-module  { -   flex-grow: 1; -   min-width: 70%; +   display: grid; + +   grid-template-columns: 1fr; +   grid-template-rows: 2em calc(100% - 4em) 2em; +} + +.battlemap-main-menu +{ +   grid-row: 1 +     display: flex; -   flex-direction: column; + +   flex-direction: row; +   flex-wrap: wrap;  } -.battlemap-right-panel +.battlemap-main-content  { -   height: inherit; -   max-width: 30%; +   grid-row: 2;     display: flex; +   flex-direction: row;  } -/** Left Panel ****************************************************************/ +.battlemap-help +{ +   grid-row: 3 + +} + +/** Main Content **************************************************************/  .battlemap-container  {     flex-grow: 1; -   min-height: 70%;     overflow: auto; -   width: inherit;     /*** Otherwise, it won't display correctly without 'transform: scale' ***/     position: relative;  } -.battlemap-footer +.battlemap-controlled  { -   max-height: 30%; +   width: 15em; +} -   overflow-y: auto; -   width: inherit; -   word-wrap: break-word; -   border-top: 1px solid #502D16; -   box-shadow: 0px -1px 2px #502D16; -   padding: 0.5em; -   padding-bottom: 1em; +.battlemap-sub-menu +{ +   width: 20em;  }  /*** Main View ****************************************************************/ | 


