Ghost/ghost/admin/assets/sass/layouts/auth.scss
Paul Adam Davis 8e7b8f8bfa Swap out Ruby Sass for Node Sass
- Uses Node Bourbon https://www.npmjs.org/package/node-bourbon
- Produces source maps
- Removed all ruby dependencie

History:
- Remove bourbon from package and cleanup grunt tasks
- Un-bourbon keyframe animations
- Un-bourbon transitions
- Un-bourbon box-sizing
- Un-bourbon font-feature-settings
- Import bourbon clearfix mixin
- Un-bourbon linear gradients
- Un-bourbon input types
- Un-bourbon positions
- Un-bourbon transforms
- Un-bourbon notification animations
- Un-bourbon uploader box-sizing
- Un-bourbon border-radius
- Un-bourbon splitbutton transitions
- Add triangle mixin
- Un-bourbon default container positioning
- Un-bourbon flexbox properties
- Fix triangle mixin - It now has the same output as the Bourbon mixin
- Add autoprefixer
- Correct global default font size
- Remove unwanted prefixes - Because, y'know, autoprefixer
- Output from node sass migration - Includes all the files we usually have, plus source maps
2014-08-30 14:13:36 +01:00

284 lines
5.3 KiB
SCSS

//
// Auth
// --------------------------------------------------
// Slug: /ghost/signin/
// --------------------------------------------------
// Covers styles for all auth screens, login, signup
// forgot password, and so on.
.ghost-login,
.ghost-signup,
.ghost-forgotten,
.ghost-reset {
color: $midgrey;
background: $darkgrey;
@media (max-width: 400px) {
background: $darkgrey;
}
main {
top: 15px;
}
input {
line-height: 1.4em;
font-size: 1.1em;
font-weight: 200;
border: none;
color: #fff;
background: transparent;
box-shadow: none;
margin: 0;
position: relative;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px $lightgrey inset !important;
}
}
.login-box,
.signup-box,
.forgotten-box,
.reset-box {
max-width: 530px;
height: 90%;
margin: 0 auto;
padding: 0;
display: table;
@media (max-width: 630px) {
max-width: 264px;
text-align: center;
}
}
//
// Sign In
// --------------------------------------------------
.login-form {
max-width: 530px;
color: lighten($midgrey, 15%);
display: table-cell;
vertical-align: middle;
@media (max-width: 630px) {
max-width: 264px;
}
.email-wrap,
.password-wrap {
position: relative;
margin: 0 0 5px 0;
background: lighten($darkgrey, 10%);
float: left;
@media (max-width: 630px) {
margin-bottom: 1em;
}
}
.email,
.password {
display: inline-block;
clear: both;
padding: 8px 0 8px 8px;
width: 216px;
transition: background ease 0.25s;
@media (max-width: 630px) {
width: 264px;
transition: none;
}
&:focus {
border: none;
background: lighten($darkgrey, 15%);
}
} // .email, .password
.email-wrap {
margin-right: 3px;
@media (max-width: 630px) {
margin-right: 0;
}
} // .email-wrap
@media (max-width: 630px) {
.email,
.password {
border-radius: 2px;
}
}
@media (min-width: 631px) {
.email {
border-radius: 2px 0 0 2px;
}
.password {
border-radius: 0 2px 2px 0;
}
}
button {
width: 85px;
height: 36px;
margin:0 0 0 10px;
padding: 0.5em 1.37em;
min-height: 30px;
min-width: 80px;
box-shadow: rgba(255,255,255,0.15) 0 1px 0 inset;
@media (max-width: 630px) {
margin: 0;
width: 100%;
margin-bottom: 1em;
}
} // button
.meta {
clear: both;
color: $midgrey;
}
a {
color: darken($midgrey, 10%);
font-size: 0.9em;
&:hover {
color: lighten($midgrey, 5%);
text-decoration: none;
}
} // a
} // .login-form
//
// Signup / Reset
// --------------------------------------------------
.signup-form,
.reset-form {
max-width: 280px;
color: lighten($midgrey, 15%);
display: table-cell;
vertical-align: middle;
@media (max-width: 630px) {
width: 264px;
}
div { // Yes. Really.
// TODO: Same here as above
position: relative;
margin: 0 0 1em 0;
background: lighten($darkgrey, 10%);
float: left;
display: table;
}
input {
width: 280px;
padding: 8px 10px;
@media (min-width: 631px) {
transition: background ease 0.25s;
}
@media (max-width: 630px) {
width: 264px;
}
&:focus {
border: none;
background: lighten($darkgrey, 15%);
}
}
.name-wrap {
position: relative;
border-radius: 2px;
.name {
border-radius: 2px;
}
}
.email-wrap {
position: relative;
border-radius: 2px;
.email {
border-radius: 2px;
}
}
.password-wrap {
position: relative;
border-radius: 2px;
.password {
border-radius: 2px;
}
}
button {
width: 100%;
height: 36px;
margin: 0 0 1em 0;
padding: 0.5em 1.37em;
min-height: 30px;
min-width: 80px;
box-shadow: rgba(255,255,255,0.15) 0 1px 0 inset;
}
} // .signup-form, .reset-form
//
// Forgot Password
// --------------------------------------------------
.forgotten-form {
max-width: 280px;
color: lighten($midgrey, 15%);
display: table-cell;
vertical-align: middle;
.email-wrap {
position: relative;
margin: 0 0 1em 0;
background: lighten($darkgrey, 10%);
float: left;
border-radius: 2px;
width: 100%;
} // .email-wrap
.email {
padding: 8px 10px;
border-radius: 2px;
transition: background ease 0.25s;
&:focus {
border: none;
background: lighten($darkgrey, 15%);
}
} // .email
button {
width: 100%;
height: 36px;
margin: 0 0 1em 0;
padding: 0.5em 1.37em;
min-height: 30px;
min-width: 80px;
box-shadow: rgba(255,255,255,0.15) 0 1px 0 inset;
} // button
} // .forgotten-form