mail/src/sass/views/_login.scss

91 lines
1.9 KiB
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 {
max-width: 700px;
2013-10-21 12:50:19 -04:00
height: 58px;
margin: 145px auto 75px auto;
2013-10-21 07:10:42 -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 {
max-width: 400px;
2013-10-21 12:50:19 -04:00
margin-left: auto;
margin-right: auto;
2013-10-21 07:10:42 -04:00
b, a {
color: $color-blue;
}
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: 20px 0;
2013-10-21 12:50:19 -04:00
}
2013-10-21 07:10:42 -04:00
2013-10-21 12:50:19 -04:00
input {
margin-right: 10px;
}
input[type=file] {
background-color: white;
2013-10-21 12:50:19 -04:00
border-width: 1px;
border-style: solid;
border-color: $color-grey-lighter;
color: $color-grey-input;
font-size: 1em;
padding: 4px 4px;
2013-10-22 08:59:36 -04:00
outline: none;
&::-webkit-file-upload-button {
background-color: $color-grey-input;
border-width: 0px;
border-style: solid;
color: white;
padding: 4px 10px;
font-family: inherit;
font-size: inherit;
line-height: inherit;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
outline: none;
cursor: pointer;
}
2013-10-22 08:59:36 -04:00
}
.passphrase-label-ok {
color: green;
2013-10-21 07:10:42 -04:00
}
.opt-in-terms {
.checkbox-wrapper {
margin-top: 0;
float: left;
}
}
2013-10-21 07:10:42 -04:00
}
2013-10-22 05:10:18 -04:00
}
.view-login-existing {
}
.view-login-initial {
.content {
button {
margin-right: 10px;
}
2013-10-22 05:10:18 -04:00
}
2013-10-21 07:10:42 -04:00
}