Ghost/ghost/admin/app/styles/layouts/auth.css
Kevin Ansfield 6bff262849 Switch to packaged version of Spirit (#985)
no issue
- remove the manually copied Spirit CSS files
- remove the manually copied Spirit helpers
- install `ember-cli-ghost-spirit` addon
- remove manual postcss configuration
- update all `color()` functions in CSS to `color-mod()`
- fixed invalid `color-mod()` usage in `power-calendar.css`
- bump sub-dependencies
2018-04-03 11:52:18 +01:00

57 lines
1.0 KiB
CSS

/* Sign in
/* ---------------------------------------------------------- */
.gh-signin {
position: relative;
margin: 30px auto;
padding: 40px;
max-width: 400px;
width: 100%;
border: #dae1e3 1px solid;
background: #f8fbfd;
border-radius: 5px;
text-align: left;
}
.gh-signin .form-group {
margin-bottom: 1.5rem;
}
.gh-signin .gh-btn {
margin: 0;
}
.forgotten-wrap {
position: relative;
}
.forgotten-wrap input {
padding-right: 7rem;
}
.forgotten-wrap .forgotten-link {
position: absolute;
top: 10px;
right: 1px;
bottom: 10px;
border-left: color-mod(var(--lightgrey) l(-5%) s(-10%)) 1px solid;
border-radius: 0;
}
.forgotten-link span {
height: 20px;
font-size: 1.1rem;
line-height: 20px;
padding: 0 11px 0 12px;
}
.forgotten-link:hover {
border-left: color-mod(var(--lightgrey) l(-15%) s(-10%)) 1px solid;
color: color-mod(var(--blue) l(-10%));
text-decoration: none;
}
.forgotten-link:active {
box-shadow: none;
text-decoration: underline;
}