AdminLTE/build/scss/pages/_lockscreen.scss

79 lines
1.1 KiB
SCSS
Raw Normal View History

//
// Pages: Lock Screen
//
// ADD THIS CLASS TO THE <BODY> TAG
2015-10-31 22:00:16 +01:00
.lockscreen {
2018-03-17 18:07:55 +01:00
background: $gray-200;
// User name [optional]
.lockscreen-name {
font-weight: 600;
text-align: center;
}
2015-10-31 22:00:16 +01:00
}
.lockscreen-logo {
font-size: 35px;
font-weight: 300;
margin-bottom: 25px;
text-align: center;
2015-10-31 22:00:16 +01:00
a {
color: $gray-700;
2015-10-31 22:00:16 +01:00
}
}
.lockscreen-wrapper {
margin: 0 auto;
margin-top: 10%;
max-width: 400px;
2015-10-31 22:00:16 +01:00
}
// Will contain the image and the sign in form
2015-10-31 22:00:16 +01:00
.lockscreen-item {
@include border-radius(4px);
2018-03-17 18:07:55 +01:00
background: $white;
margin: 10px auto 30px;
padding: 0;
2015-10-31 22:00:16 +01:00
position: relative;
width: 290px;
}
// User image
2015-10-31 22:00:16 +01:00
.lockscreen-image {
@include border-radius(50%);
2018-03-17 18:07:55 +01:00
background: $white;
left: -10px;
2015-10-31 22:00:16 +01:00
padding: 5px;
position: absolute;
top: -25px;
2015-10-31 22:00:16 +01:00
z-index: 10;
2015-10-31 22:00:16 +01:00
> img {
@include border-radius(50%);
height: 70px;
width: 70px;
2015-10-31 22:00:16 +01:00
}
}
// Contains the password input and the login button
2015-10-31 22:00:16 +01:00
.lockscreen-credentials {
margin-left: 70px;
2015-10-31 22:00:16 +01:00
.form-control {
border: 0;
}
2015-10-31 22:00:16 +01:00
.btn {
2018-03-17 18:07:55 +01:00
background-color: $white;
2015-10-31 22:00:16 +01:00
border: 0;
padding: 0 10px;
}
}
.lockscreen-footer {
margin-top: 10px;
}