﻿
/* impostazione per colorare i text in insert*/
.form-control-insert 
{
    background-color:#7FFFD4;  
}

/* impostazione lo sfondo bianco delle text area disabilitate*/

.form-control[readonly].no-gray {
    background-color: white;
}

/* impostazione per l'asterisco dei campi richiesti */
.richiesto {
	display: inline-block;
	color: #d2322d;
	font-size: 1.5em;
	font-weight: bold;
	position: relative;
	/*top: -0.2em;*/
}

/* impostazione personalizzate per le table */

table.table-bordered
{
    border:1px solid #337ab7;
}

table.table-bordered > tbody > tr > th
{
    background-color: #337ab7;
    color: #fff;
    border:1px solid #337ab7;
}

table.table-bordered > tbody > tr > td
{
    border:1px solid #c3c3c3;
}

table.table-striped > tbody > tr:nth-child(2n+1) > td 
{
   background-color: #daf4fe;
}

table.table-hover tbody tr:hover td
{
  background-color: #ff6a00;
}


/* impostazione personalizzate per le login */
.login-page {
    background: #3c8dbc;
}

.login-box-body {
  background: rgba(96, 92, 168, 0.50);
  padding: 20px;
  border-top: 0;
  color: #666;
}

