2015-05-14 16:45:37 +03:00
|
|
|
/* Modals
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
/* Fullscreen Modal
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2016-10-07 16:27:39 +03:00
|
|
|
/* explicit modal container so that background and content can be animated individually */
|
|
|
|
.fullscreen-modal-container {
|
2017-02-16 22:50:05 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-10-07 16:27:39 +03:00
|
|
|
visibility: hidden;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 10000;
|
|
|
|
overflow: auto;
|
2015-11-18 13:50:48 +03:00
|
|
|
height: 100vh;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
.fullscreen-modal-background {
|
2015-05-14 16:45:37 +03:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2016-10-07 16:27:39 +03:00
|
|
|
z-index: 50;
|
|
|
|
height: 100vh;
|
2017-02-16 22:50:05 +03:00
|
|
|
background: #324750;
|
|
|
|
opacity: 0.86;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
.fullscreen-modal {
|
2016-10-07 16:27:39 +03:00
|
|
|
position: relative;
|
|
|
|
z-index: 100;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
2015-05-16 14:43:12 +03:00
|
|
|
max-width: 550px;
|
2015-05-14 16:45:37 +03:00
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
2015-11-18 13:50:48 +03:00
|
|
|
.fullscreen-modal {
|
2015-05-14 16:45:37 +03:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
/* Modifiers
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.fullscreen-modal-wide {
|
2017-02-16 22:50:05 +03:00
|
|
|
width: 100%;
|
|
|
|
max-width: 550px;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
.fullscreen-modal-action {
|
2017-02-16 20:12:13 +03:00
|
|
|
margin: 6vw 0;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
/* The modal
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
/* Modal content
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
position: relative;
|
2017-02-16 22:50:05 +03:00
|
|
|
padding: 40px;
|
2015-05-14 16:45:37 +03:00
|
|
|
background-color: #fff;
|
2015-05-16 14:43:12 +03:00
|
|
|
background-clip: padding-box;
|
2017-02-16 22:50:05 +03:00
|
|
|
border-radius: 6px;
|
2017-02-17 17:10:02 +03:00
|
|
|
box-shadow: 1px 3px 8px rgba(0,0,0,.09), 8px 14px 38px rgba(0,0,0,.15);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-14 23:30:25 +03:00
|
|
|
.modal-content * {
|
|
|
|
user-select: text;
|
|
|
|
}
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
.modal-content .close {
|
|
|
|
position: absolute;
|
|
|
|
top: 19px;
|
|
|
|
right: 19px;
|
|
|
|
z-index: 9999;
|
|
|
|
margin: 0;
|
2015-05-16 14:43:12 +03:00
|
|
|
padding: 0;
|
|
|
|
width: 16px;
|
2017-04-14 19:22:14 +03:00
|
|
|
height: auto;
|
2015-05-14 16:45:37 +03:00
|
|
|
border: none;
|
2015-05-24 23:03:55 +03:00
|
|
|
}
|
|
|
|
|
2017-04-14 19:22:14 +03:00
|
|
|
.modal-content .close svg {
|
|
|
|
fill: #808284;
|
|
|
|
width: 16px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content .close svg:hover {
|
|
|
|
fill: var(--darkgrey);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header h1 {
|
|
|
|
display: inline-block;
|
2017-02-16 20:12:13 +03:00
|
|
|
margin: -5px 25px 0 0;
|
2017-02-16 22:50:05 +03:00
|
|
|
font-size: 2.2rem;
|
|
|
|
line-height: 1.15em;
|
|
|
|
font-weight: 600;
|
|
|
|
letter-spacing: 0.4px;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.modal-body p {
|
|
|
|
font-size: 1.4rem;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer {
|
2015-06-03 17:44:12 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2015-05-14 16:45:37 +03:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer button {
|
2017-02-17 17:10:02 +03:00
|
|
|
margin-left: 12px;
|
2015-11-18 13:50:48 +03:00
|
|
|
min-width: 100px;
|
2015-06-03 17:44:12 +03:00
|
|
|
text-align: center;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-08-13 11:04:45 +03:00
|
|
|
.modal-footer button:first-of-type {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2016-04-15 17:45:50 +03:00
|
|
|
.modal-body .gh-image-uploader {
|
|
|
|
margin: 0;
|
2017-02-21 12:16:32 +03:00
|
|
|
background: color(var(--lightgrey) l(+4%));
|
2016-04-15 17:45:50 +03:00
|
|
|
}
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
/* Content Modifiers
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 20:12:13 +03:00
|
|
|
.modal-body fieldset {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2015-05-14 16:45:37 +03:00
|
|
|
|
|
|
|
/* Login styles */
|
|
|
|
.modal-body .login-form {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body .login-form .password-wrap input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
.modal-body .login-form {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 264px;
|
|
|
|
}
|
|
|
|
.modal-body .login-form .password-wrap {
|
|
|
|
margin: 0 auto 1em;
|
2015-05-16 14:43:12 +03:00
|
|
|
width: 100%;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
2017-02-16 22:50:05 +03:00
|
|
|
.modal-body .login-form .gh-btn {
|
2015-05-14 16:45:37 +03:00
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 1em;
|
2015-05-16 14:43:12 +03:00
|
|
|
width: 100%;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 901px) {
|
|
|
|
.modal-body .login-form {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.modal-body .login-form .password-wrap {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|