/* 
    Created on : 13 nov. 2014, 09:38:56
    Author     : mickael
*/
/**/
/*
* Using a more specific selector in your custom style sheet overrides the above background-image value, inserting your logo instead:
*/
body.login {
  background-color: #fff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f7f7f7));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff7f7f7', GradientType=0);
}
body.login div#login h1 a {
  background-image: url("img/logo.png");
  background-position: center;
  background-size: contain;
  margin: 0 0 5px 0;
  height: 120px;
  width: 100%;
}
/*
The default login page style in colors.css sets the text color of the links below the form:
*/
.login #nav a,
.login #backtoblog a {
  text-decoration: none;
  color: #999;
}
