loginpane.css 1.7 KB
.enterPane__box
{
  margin: 150px auto;
  width: 400px;
  height: 280px;
  padding: 10px;
  -webkit-border-radius: 8px/7px;
  -moz-border-radius: 8px/7px;
  border-radius: 8px/7px;
  background-color: white;
  -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.31);
  -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.31);
  box-shadow: 1px 2px 5px rgba(0,0,0,.31);
  border: solid 1px #cbc9c9;
  font-family: 'Ubuntu', sans-serif;
 }

 .enterPane__header
 {
   text-align: center;
   color:#00b395;
   font-weight: bolder;
 }

 .blue {
 	background-color: #00b395;
 	background-image: -webkit-linear-gradient(top,#00b395,#00cdaa);
 	background-image: -moz-linear-gradient(top,#00b395,#00cdaa);
 	background-image: -ms-linear-gradient(top,#00b395,#00cdaa);
 	background-image: -o-linear-gradient(top,#00b395,#00cdaa);
 	background-image: linear-gradient(top,#00b395,#00cdaa);

 	border: 1px solid #00b395;
 	color: white;

   font-size: 13px;
 	font-weight: bold;
 	text-align: center;
 	height: 27px;
 	line-height: 27px;
 	min-width: 54px;
 	padding: 0 10px;
 	text-decoration: none;
 }

 /*.form-group
 {
   clear:both;
 }*/

 .enterPane__link
 {
     text-decoration: underline;
 }

 .blue:hover {
 	border: 1px solid #00b395;

   color: white;
 	background-color: #00b395;
 	background-image: -webkit-linear-gradient(top,#00b395,#009f85);
 	background-image: -moz-linear-gradient(top,#00b395,#009f85);
 	background-image: -ms-linear-gradient(top,#00b395,#009f85);
 	background-image: -o-linear-gradient(top,#00b395,#009f85);
 	background-image: linear-gradient(top,#00b395,#009f85);

 	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
 	-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
 	box-shadow: 0 1px 1px rgba(0,0,0,.1);
   width: auto;
   height: 27px;
 }