2015-02-01 21:25:09 +00:00
|
|
|
/*
|
|
|
|
* Page: Lock Screen
|
|
|
|
* -----------------
|
|
|
|
*/
|
2015-02-04 22:12:18 +00:00
|
|
|
/* ADD THIS CLASS TO THE <BODY> TAG */
|
2015-02-01 21:25:09 +00:00
|
|
|
.lockscreen {
|
2015-02-04 22:12:18 +00:00
|
|
|
background: @gray;//url(../img/boxed-bg.png) repeat;
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We will put the dynamically generated digital clock here */
|
2015-02-04 22:12:18 +00:00
|
|
|
.lockscreen-logo {
|
|
|
|
font-size: 30px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
a {
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.lockscreen-wrapper {
|
|
|
|
max-width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 10%;
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
2015-02-02 22:09:59 +00:00
|
|
|
@media (max-width: @screen-xs-max) {
|
2015-02-01 21:25:09 +00:00
|
|
|
.lockscreen .headline {
|
|
|
|
font-size: 60px;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* User name [optional] */
|
|
|
|
.lockscreen .lockscreen-name {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Will contain the image and the sign in form */
|
|
|
|
.lockscreen-item {
|
|
|
|
padding: 0;
|
|
|
|
background: #fff;
|
|
|
|
position: relative;
|
|
|
|
.border-radius(4px);
|
|
|
|
.clearfix();
|
|
|
|
margin: 10px auto;
|
|
|
|
width: 290px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* User image */
|
2015-02-04 22:12:18 +00:00
|
|
|
.lockscreen-image {
|
2015-02-01 21:25:09 +00:00
|
|
|
position: absolute;
|
|
|
|
left: -10px;
|
|
|
|
top: -30px;
|
|
|
|
background: #fff;
|
|
|
|
padding: 10px;
|
|
|
|
.border-radius(50%);
|
|
|
|
z-index: 10;
|
|
|
|
> img {
|
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
|
|
|
.border-radius(50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Contains the password input and the login button */
|
2015-02-04 22:12:18 +00:00
|
|
|
.lockscreen-credentials {
|
2015-02-01 21:25:09 +00:00
|
|
|
margin-left: 80px;
|
|
|
|
input {
|
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
.btn {
|
|
|
|
background-color: #fff;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Extra to give the user an option to navigate the website [optional]*/
|
|
|
|
.lockscreen-link {
|
|
|
|
margin-top: 30px;
|
|
|
|
text-align: center;
|
|
|
|
}
|