AdminLTE/build/less/lockscreen.less

69 lines
1.1 KiB
Plaintext
Raw Normal View History

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-06 17:33:55 +00:00
background: @gray;
2015-02-01 21:25:09 +00:00
}
2015-02-04 22:12:18 +00:00
.lockscreen-logo {
2015-02-05 23:08:52 +00:00
font-size: 35px;
2015-02-04 22:12:18 +00:00
text-align: center;
margin-bottom: 25px;
2015-02-06 22:08:16 +00:00
font-weight: 300;
2015-02-04 22:12:18 +00:00
a {
color: #444;
}
}
.lockscreen-wrapper {
max-width: 400px;
margin: 0 auto;
margin-top: 10%;
2015-02-01 21:25:09 +00:00
}
/* User name [optional] */
.lockscreen .lockscreen-name {
text-align: center;
2015-07-12 13:42:26 +00:00
font-weight: 600;
2015-02-01 21:25:09 +00:00
}
/* Will contain the image and the sign in form */
.lockscreen-item {
2015-02-05 23:08:52 +00:00
.border-radius(4px);
2015-02-01 21:25:09 +00:00
padding: 0;
background: #fff;
position: relative;
2015-02-05 23:18:29 +00:00
margin: 10px auto 30px auto;
2015-02-01 21:25:09 +00:00
width: 290px;
}
/* User image */
2015-02-04 22:12:18 +00:00
.lockscreen-image {
2015-02-05 23:18:29 +00:00
.border-radius(50%);
2015-02-01 21:25:09 +00:00
position: absolute;
left: -10px;
2015-02-05 23:18:29 +00:00
top: -25px;
2015-02-01 21:25:09 +00:00
background: #fff;
2015-07-12 13:42:26 +00:00
padding: 5px;
2015-02-01 21:25:09 +00:00
z-index: 10;
> img {
.border-radius(50%);
2015-02-05 23:18:29 +00:00
width: 70px;
2015-07-12 13:42:26 +00:00
height: 70px;
2015-02-01 21:25:09 +00:00
}
}
/* Contains the password input and the login button */
2015-02-04 22:12:18 +00:00
.lockscreen-credentials {
2015-02-05 23:18:29 +00:00
margin-left: 70px;
.form-control {
2015-07-21 02:36:04 +00:00
border: 0;
2015-02-01 21:25:09 +00:00
}
.btn {
background-color: #fff;
border: 0;
2015-02-05 23:18:29 +00:00
padding: 0 10px;
2015-02-01 21:25:09 +00:00
}
2015-02-06 17:33:55 +00:00
}
.lockscreen-footer {
margin-top: 10px;
2015-07-12 13:42:26 +00:00
}