/*
This file is part of AD ERP Version 0.1.  Copyright 2018.
Designed and Coded by RAMARO.  ricdoamaro@hotmail.com
Each line should be prefixed with 
*/
/* 
    Created on : 19/09/2018, 01:52:19 PM
    Author     : Ricardo
*/

/****************************************/
/*General Button Properties
/****************************************/
/* Style buttons */

.button {
    /*background-color: DodgerBlue;*/
    background-color: lightgray;
    /*border: none;*/
    display: inline-block;
    border-bottom: solid gray;
    border-left: solid gray;
    border-right: none;
    border-top: none;
    color: black;
    padding: 10px 10px;
    font-size: 18px;
    cursor: pointer;
    height: 150px;
    width: 150px;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-align: right;
    vertical-align: bottom; 
    border-radius: 4px;
    
}

/* Darker background on mouse-over */
.button:hover {
    background-color: RoyalBlue;
}
