2015-05-17 15:31:54 +03:00
|
|
|
/* Full screen workflow
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.gh-flow {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2015-06-10 21:49:50 +03:00
|
|
|
overflow-y: auto;
|
2015-10-23 20:18:39 +03:00
|
|
|
min-height: 100%;
|
2021-03-02 19:39:52 +03:00
|
|
|
background: linear-gradient(135deg, #fff, #f4f4f4);
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-head {
|
2015-06-10 21:49:50 +03:00
|
|
|
flex-shrink: 0;
|
2015-05-17 15:31:54 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 4vh;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content-wrap {
|
|
|
|
flex-grow: 1;
|
2015-06-10 21:49:50 +03:00
|
|
|
flex-shrink: 0;
|
2015-05-17 15:31:54 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0 5%;
|
|
|
|
padding-bottom: 8vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-back {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2015-05-24 22:44:09 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2015-05-17 15:31:54 +03:00
|
|
|
margin: 0 0 0 3%;
|
|
|
|
padding: 2px 9px 2px 5px;
|
|
|
|
border: transparent 1px solid;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #7d878a;
|
2019-11-22 13:53:57 +03:00
|
|
|
font-weight: 300;
|
2015-05-17 15:31:54 +03:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-flow-back svg {
|
|
|
|
margin-right: 4px;
|
|
|
|
height: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-back svg path {
|
|
|
|
stroke: #7d878a;
|
|
|
|
stroke-width: 1.2px;
|
|
|
|
}
|
|
|
|
|
2015-05-17 15:31:54 +03:00
|
|
|
.gh-flow-back:hover {
|
|
|
|
border: #dae1e3 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav {
|
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav ol {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0;
|
|
|
|
width: 160px;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav li {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav .divider {
|
|
|
|
align-self: center;
|
|
|
|
width: 22px;
|
|
|
|
height: 2px;
|
|
|
|
background-image: linear-gradient(to right, var(--green) 33%, rgba(255, 255, 255, 0) 0%);
|
|
|
|
background-position: bottom;
|
|
|
|
background-size: 6px 2px;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-nav .active ~ .divider {
|
2015-05-17 15:31:54 +03:00
|
|
|
background-image: linear-gradient(to right, #e3e3e3 33%, rgba(255, 255, 255, 0) 0%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav .step {
|
2015-05-24 22:44:09 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2015-05-17 15:31:54 +03:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
border: transparent 2px solid;
|
|
|
|
background: var(--green);
|
|
|
|
border-radius: 100%;
|
|
|
|
color: #fff;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.3rem;
|
2015-05-24 22:44:09 +03:00
|
|
|
line-height: 1;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav .step .num {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-flow-nav .step svg {
|
2015-06-10 21:49:50 +03:00
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
2017-04-07 18:23:45 +03:00
|
|
|
fill: #fff;
|
2017-04-19 13:27:32 +03:00
|
|
|
stroke: #fff;
|
|
|
|
stroke-width: 2px;
|
2015-05-24 22:44:09 +03:00
|
|
|
}
|
|
|
|
|
2019-09-05 10:22:49 +03:00
|
|
|
.gh-flow-nav .step svg path {
|
|
|
|
stroke: #fff;
|
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-nav .active ~ li:not(divider) .step {
|
2015-05-17 15:31:54 +03:00
|
|
|
border: #e3e3e3 2px solid;
|
|
|
|
background: transparent;
|
|
|
|
color: #cdcdcd;
|
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-nav .active ~ li:not(divider) .step .num {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-flow-nav .active ~ li:not(divider) .step svg {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-nav .active .step {
|
2015-05-17 15:31:54 +03:00
|
|
|
border: var(--green) 2px solid;
|
|
|
|
background: transparent;
|
2018-04-03 13:52:18 +03:00
|
|
|
color: color-mod(var(--green) lightness(-10%));
|
2015-05-17 15:31:54 +03:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-nav .active .step .num {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-flow-nav .active .step svg {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-nav .done {
|
|
|
|
border: none;
|
|
|
|
background: var(--green);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2015-05-24 22:44:09 +03:00
|
|
|
|
2015-05-17 15:31:54 +03:00
|
|
|
.gh-flow-content {
|
2015-06-10 21:49:50 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2015-05-17 15:31:54 +03:00
|
|
|
max-width: 700px;
|
|
|
|
width: 100%;
|
|
|
|
color: var(--midgrey);
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.9rem;
|
|
|
|
line-height: 1.5em;
|
2019-11-22 13:53:57 +03:00
|
|
|
font-weight: 300;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
.gh-flow-content {
|
|
|
|
font-size: 4vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content header {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 520px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content h1 {
|
|
|
|
font-size: 4.2rem;
|
2019-11-22 13:53:57 +03:00
|
|
|
font-weight: 300;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.gh-flow-content h1 {
|
|
|
|
font-size: 7vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content strong {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content em {
|
|
|
|
color: var(--blue);
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2015-06-10 21:49:50 +03:00
|
|
|
.gh-flow-content .gh-flow-screenshot {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
height: 45vh;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
2015-06-10 21:49:50 +03:00
|
|
|
.gh-flow-content .gh-flow-screenshot img {
|
2015-05-17 15:31:54 +03:00
|
|
|
position: relative;
|
2015-06-10 21:49:50 +03:00
|
|
|
left: -3%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-height: 100%;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 860px) {
|
2015-06-10 21:49:50 +03:00
|
|
|
.gh-flow-content .gh-flow-screenshot img {
|
2015-05-17 15:31:54 +03:00
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-06-10 21:49:50 +03:00
|
|
|
@media (max-width: 600px) {
|
|
|
|
.gh-flow-content .gh-flow-screenshot {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
2015-05-17 15:31:54 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-flow-content .gh-btn {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: block;
|
2019-06-18 13:47:21 +03:00
|
|
|
margin: 40px auto 0;
|
2015-05-17 15:31:54 +03:00
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
2019-09-30 12:30:45 +03:00
|
|
|
.gh-flow-content .login span {
|
|
|
|
height: 37px !important;
|
|
|
|
line-height: 37px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .gh-input:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
border-color: color-mod(var(--midlightgrey) l(+10%));
|
|
|
|
}
|
|
|
|
|
2015-05-28 16:58:52 +03:00
|
|
|
.gh-flow-content .gh-flow-skip {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 5px;
|
|
|
|
color: #7d878a;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
2015-05-17 15:31:54 +03:00
|
|
|
.gh-flow-content .gh-flow-create {
|
|
|
|
position: relative;
|
|
|
|
margin: 70px auto 30px;
|
2019-06-18 13:47:21 +03:00
|
|
|
padding: 50px 40px 40px;
|
2015-05-17 15:31:54 +03:00
|
|
|
max-width: 400px;
|
2015-06-10 21:49:50 +03:00
|
|
|
width: 100%;
|
2015-05-17 15:31:54 +03:00
|
|
|
border: #dae1e3 1px solid;
|
2019-06-18 13:47:21 +03:00
|
|
|
background: #fff;
|
2015-05-17 15:31:54 +03:00
|
|
|
border-radius: 5px;
|
|
|
|
text-align: left;
|
2019-06-18 13:47:21 +03:00
|
|
|
box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.1);
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
2020-01-21 14:14:35 +03:00
|
|
|
.gh-flow-create .gh-btn-create-account span {
|
|
|
|
height: 37px;
|
|
|
|
line-height: 37px;
|
|
|
|
}
|
|
|
|
|
2015-05-17 15:31:54 +03:00
|
|
|
.gh-flow-content .account-image {
|
|
|
|
position: absolute;
|
|
|
|
top: -50px;
|
|
|
|
left: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0;
|
|
|
|
margin-left: -50px;
|
|
|
|
padding: 4px;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
border: #d1d9db 1px solid;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .account-image:hover .edit-account-image {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .edit-account-image {
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 4px;
|
|
|
|
bottom: 4px;
|
|
|
|
left: 4px;
|
|
|
|
width: calc(100% - 8px);
|
|
|
|
background: rgba(87, 163, 232, 0.7);
|
|
|
|
border-radius: 100%;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 3rem;
|
|
|
|
line-height: 90px;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.3s ease;
|
2017-04-14 19:22:14 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .edit-account-image svg {
|
|
|
|
fill: #fff;
|
|
|
|
height: 3rem;
|
|
|
|
width: auto;
|
|
|
|
flex: 1 1 3rem;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-content .placeholder-img {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: block;
|
|
|
|
width: 90px;
|
|
|
|
height: 90px;
|
|
|
|
background-color: #f8fbfd;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
border-radius: 100%;
|
|
|
|
animation: fade-in 1s;
|
|
|
|
}
|
|
|
|
|
2015-03-29 21:10:53 +03:00
|
|
|
.gh-flow-content .gravatar-img {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
box-sizing: content-box;
|
|
|
|
width: calc(100% - 8px);
|
|
|
|
width: 90px;
|
|
|
|
height: 90px;
|
|
|
|
border: #fff 4px solid;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
border-radius: 100%;
|
|
|
|
animation: fade-in 1s;
|
|
|
|
}
|
|
|
|
|
2015-05-28 08:52:41 +03:00
|
|
|
.gh-flow-content .file-uploader {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 23px;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
transform: scale(14);
|
|
|
|
transform-origin: right;
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2015-05-17 15:31:54 +03:00
|
|
|
.gh-flow-content .form-group {
|
2019-09-30 12:30:45 +03:00
|
|
|
margin-bottom: 20px !important;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .form-group label {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .form-group a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content input {
|
2019-06-18 13:47:21 +03:00
|
|
|
padding: 10px 10px 10px 30px;
|
2019-09-30 12:30:45 +03:00
|
|
|
font-size: 1.4rem;
|
2015-05-17 15:31:54 +03:00
|
|
|
line-height: 1.4em;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 400;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .pw-strength {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 1px;
|
|
|
|
margin-top: -11px;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 24px;
|
|
|
|
background: rgba(255, 255, 255, 0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .pw-strength-dot {
|
|
|
|
display: block;
|
|
|
|
margin-top: 2px;
|
|
|
|
width: 3px;
|
|
|
|
height: 3px;
|
|
|
|
background-color: #d9e0e3;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .pw-strength-dot:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .pw-strength-activedot {
|
|
|
|
background-color: var(--red);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .gh-flow-invite {
|
2015-07-07 20:14:23 +03:00
|
|
|
position: relative;
|
2015-05-17 15:31:54 +03:00
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 400px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2015-06-10 21:49:50 +03:00
|
|
|
.gh-flow-invite label {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-flow-invite label svg {
|
2015-06-10 21:49:50 +03:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
line-height: 1.4em;
|
|
|
|
}
|
|
|
|
|
2015-07-01 11:07:29 +03:00
|
|
|
.gh-flow-invite textarea {
|
2019-06-18 13:47:21 +03:00
|
|
|
background: var(--input-bg-color) url(img/invite-placeholder.png) 10px 8px no-repeat;
|
2019-06-21 14:52:39 +03:00
|
|
|
background-size: 203px 35px;
|
2019-06-18 13:47:21 +03:00
|
|
|
border: var(--input-border);
|
2015-07-01 11:07:29 +03:00
|
|
|
box-shadow: none; /* Remove some default styling for Firefox (required attribute) */
|
2019-06-21 14:52:39 +03:00
|
|
|
font-size: 1.5rem;
|
2019-06-18 13:47:21 +03:00
|
|
|
line-height: 1.8rem;
|
2015-07-01 11:07:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-invite textarea:valid {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2015-05-17 15:31:54 +03:00
|
|
|
@media (max-width: 460px) {
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-flow-content .gh-flow-invite label svg {
|
2015-05-17 15:31:54 +03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .gh-flow-faces {
|
2015-06-10 21:49:50 +03:00
|
|
|
margin-bottom: 2vw;
|
2016-02-02 18:08:28 +03:00
|
|
|
width: 100%;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 160px;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-size: 1.4rem;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.8rem;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .response {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: -25px;
|
|
|
|
margin: 0;
|
|
|
|
color: #a6b0b3;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
2019-06-21 14:52:39 +03:00
|
|
|
.gh-flow-content form:not(.gh-signin) .success .gh-input-icon svg {
|
2017-04-14 19:22:14 +03:00
|
|
|
fill: var(--green);
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.error,
|
|
|
|
.error-content,
|
|
|
|
.main-error {
|
|
|
|
user-select: text;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 400;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .error input {
|
|
|
|
border-color: var(--red);
|
2019-06-18 13:47:21 +03:00
|
|
|
box-shadow: none;
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
2017-04-14 19:22:14 +03:00
|
|
|
.gh-flow-content .error .gh-input-icon svg {
|
|
|
|
fill: var(--red);
|
2015-05-17 15:31:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .error .response {
|
|
|
|
color: var(--red);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-flow-content .main-error {
|
|
|
|
margin-top: 5px;
|
|
|
|
color: var(--red);
|
|
|
|
font-size: 1.3rem;
|
|
|
|
}
|