1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-16 14:15:05 -05:00
mail/src/sass/views/_login.scss

44 lines
886 B
SCSS
Raw Normal View History

2013-10-21 07:10:42 -04:00
.view-login {
2013-10-21 12:50:19 -04:00
position: relative;
overflow: hidden;
2013-10-21 07:10:42 -04:00
height: 100%;
2013-10-21 12:50:19 -04:00
background-color: $color-grey-lightest;
color: $color-grey-dark;
2013-10-21 07:10:42 -04:00
2013-10-21 12:50:19 -04:00
.logo-wrapper {
width: 320px;
height: 58px;
margin: 130px auto 75px;
2013-10-21 07:10:42 -04:00
}
2013-10-21 12:50:19 -04:00
.logo {
background-image:url('../img/whiteout_logo.svg');
background-repeat: no-repeat;
background-size: 320px 58px;
width: 320px;
height: 58px;
2013-10-21 07:10:42 -04:00
}
.content {
2013-10-21 12:50:19 -04:00
max-width: 400px;
margin-left: auto;
margin-right: auto;
2013-10-21 07:10:42 -04:00
2013-10-21 12:50:19 -04:00
p {
line-height: 150%
2013-10-21 07:10:42 -04:00
}
2013-10-21 12:50:19 -04:00
div {
margin: 25px 0;
}
2013-10-21 07:10:42 -04:00
2013-10-21 12:50:19 -04:00
input {
margin-right: 5px;
border-radius: 5px;
border-width: 1px;
border-style: solid;
border-color: $color-grey-light;
padding: 5px;
2013-10-21 07:10:42 -04:00
}
}
}