2018-12-11 09:47:44 +03:00
|
|
|
/* Global styles */
|
|
|
|
/* ------------------------------------------------------------ */
|
|
|
|
html {
|
|
|
|
font-size: 62.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
font-family: var(--default-font);
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: var(--text-base);
|
|
|
|
letter-spacing: 0.2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: var(--grey-d3);
|
|
|
|
font-size: var(--text-2xl);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: var(--grey-d3);
|
|
|
|
font-size: var(--text-base);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--blue);
|
|
|
|
transition: color var(--animation-speed-f1) ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: var(--blue-d3);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
h1 {
|
|
|
|
font-size: var(--text-xl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Auth Modal */
|
|
|
|
/* --------------------------------------------- */
|
|
|
|
.gm-logo {
|
|
|
|
width: 52px;
|
|
|
|
height: 52px;
|
|
|
|
border-radius: 4px;
|
2018-12-14 11:57:08 +03:00
|
|
|
margin: 0 auto;
|
2018-12-11 09:47:44 +03:00
|
|
|
background: #343F44 url('../assets/images/ghost-logo.svg') center center no-repeat;
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:57:08 +03:00
|
|
|
.gm-auth-header,
|
|
|
|
.gm-auth-footer {
|
2018-12-11 09:47:44 +03:00
|
|
|
display: flex;
|
2018-12-14 11:57:08 +03:00
|
|
|
flex-direction: column;
|
2018-12-11 09:47:44 +03:00
|
|
|
justify-content: space-between;
|
2018-12-14 11:57:08 +03:00
|
|
|
align-items: center;
|
|
|
|
margin: 24px 0 0;
|
2018-12-11 09:47:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gm-auth-header h1 {
|
|
|
|
font-size: var(--text-xl);
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:57:08 +03:00
|
|
|
.gm-auth-header h4,
|
|
|
|
.gm-auth-footer h4 {
|
2018-12-11 09:47:44 +03:00
|
|
|
font-weight: normal;
|
|
|
|
font-size: var(--text-s);
|
|
|
|
letter-spacing: 0.4px;
|
2018-12-14 11:57:08 +03:00
|
|
|
/* color: var(--grey-d1); */
|
2018-12-11 09:47:44 +03:00
|
|
|
}
|
|
|
|
|
2018-12-14 11:57:08 +03:00
|
|
|
.gm-auth-header a,
|
|
|
|
.gm-auth-footer a {
|
2018-12-11 09:47:44 +03:00
|
|
|
display: block;
|
|
|
|
font-size: var(--text-s);
|
|
|
|
letter-spacing: 0.4px;
|
|
|
|
padding: 8px;
|
|
|
|
margin: -8px -8px -8px -2px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--blue);
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:57:08 +03:00
|
|
|
.gm-auth-header a:hover,
|
|
|
|
.gm-auth-footer a:hover {
|
2018-12-11 09:47:44 +03:00
|
|
|
color: var(--blue-d3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gm-forgot-link {
|
|
|
|
position: absolute;
|
|
|
|
top: 14px;
|
2018-12-14 11:57:08 +03:00
|
|
|
right: 14px;
|
2018-12-11 09:47:44 +03:00
|
|
|
z-index: 9999;
|
|
|
|
font-size: var(--text-s);
|
|
|
|
letter-spacing: 0.4px;
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:57:08 +03:00
|
|
|
.gm-reset-sent {
|
|
|
|
margin: 24px 0 0;
|
|
|
|
background: color-mod(var(--green) a(0.2));
|
|
|
|
border-radius: 4px;
|
|
|
|
color: color-mod(var(--green) l(-30%) s(+8%));
|
|
|
|
padding: 12px 14px 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Custom forms */
|
|
|
|
|
2018-12-11 09:47:44 +03:00
|
|
|
.gm-floating-input .gm-forgot-input {
|
|
|
|
padding-right: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 440px) {
|
|
|
|
h4 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|