AdminLTE/build/less/lockscreen.less

68 lines
1.1 KiB
Plaintext
Raw Normal View History

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