/*
  ==========================================================================
  =              S T O N E   M O U N T A I N   S O F T W A R E             =
  =          10373 SW Purity Springs Road -  Augusta, KS 67010-7787        =
  =             (316) 744-1334 - info@StoneMountainSoftware.com            =
  =                                                                        =
  =  This source code is proprietary information and a trade secret        =
  =  authored by Stone Mountain Software on behalf of Owens Construction   =
  =  Incorporated, to whom upon payment for work product it is tendered    =
  =  without restriction.                                                  =
  =                                                                        =
  =  Any usage or disclosure whatsoever outside of explicit written        =
  =  licensing terms granted by Stone Mountain Software is forbidden.      =
  =                                                                        =
  =  Project: Pro*Ject Star                                                =
  =  File:    Menu.css                                                     =
  =  Purpose: CSS for menu                                                 =
  =  Author:  Peter F. Levy                                                =
  =                                                                        =
  =  Revision history:                                                     =
  =    Rev   Date     Reason                                               =
  =    ---  ------    ---------------------------------------------------  =
  =    000  180817    Developmental code                                   =
  ==========================================================================

   #fcfaf7   page button area bg color; tables background
   #f8f4ee   menu box bg, overview table tr odd, pane table bg, main form bg color
   #f0e8da   overview table tr highlight
   #e8e0d4   overview / editor / pane table bg, overview table button
*/


.Menu
{
  display:          flex;
  flex-direction:   column;
  align-items:      center;
  justify-items:    center;
}


.MenuPanel
{
  border:           1.0pt solid tan;
  border-radius:    0.15in;
  background-color: #faf8f4;
  color:            brown;
  padding:          0.05in;
  margin:           0.25in;
  width:            auto;
  height:           auto;
}


.MenuPanel .Title
{
  background-color: #f0e8da;
  border-radius:    0.10in 0.10in 0 0;
  width:            100%;
  margin-bottom     0.10;
  font-size:        10.5pt;
  font-weight:      bold;
  text-align:       center;
  text-shadow:      1px 1px white;
}


.MenuPanel .Tiles
{
  display:          flex;
  flex-wrap:        wrap;
  flex-direction:   row;
  align-items:      center;
  justify-items:    center;
}


.MenuTile
{
  text-align:       center;
  font-size:        8pt;
  font-weight:      normal;
  width:            0.55in;
  height:           0.55in;
  margin:           0.06in;
  border:           1px solid #faf8f4;  /* Not visible, prevents resizing of container div on hover */
  padding:          0.03in;
  border-radius:    0.05in;
}


.MenuTile:hover
{
  border: 1px solid tan;
  cursor: pointer;
}



