1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/sass/views/_login.scss
2013-10-22 18:26:30 +02:00

55 lines
1.0 KiB
SCSS

.view-login {
position: relative;
overflow: hidden;
height: 100%;
background-color: $color-grey-lightest;
color: $color-grey-dark;
.logo-wrapper {
width: 320px;
height: 58px;
margin: 125px auto 80px;
}
.logo {
background-image:url('../img/whiteout_logo.svg');
background-repeat: no-repeat;
background-size: 320px 58px;
width: 320px;
height: 58px;
}
.content {
max-width: 500px;
margin-left: auto;
margin-right: auto;
p {
line-height: 150%
}
div {
margin: 25px 0;
}
input {
margin-right: 5px;
border-radius: 5px;
border-width: 1px;
border-style: solid;
border-color: $color-grey-light;
padding: 5px;
outline: none;
}
.error {
border: 1px solid red;
}
}
}
.view-login-existing {
.content {
max-width: 400px;
}
}