48bfa3e8 by Jeff Balicki

login

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent c932a13d
......@@ -14305,6 +14305,12 @@ body {
#page {
overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
#page {
height: 100vh;
padding-bottom: 50px;
}
}
#error-404-wrapper,
#content,
......@@ -14605,6 +14611,14 @@ h1 + p, .h1 + p {
width: 100%;
position: relative;
}
@media only screen and (max-width: 900px) {
.header-section,
.full-image-login,
.full-image,
.image-loaded {
height: auto;
}
}
.full-image::after {
content: "";
......@@ -14627,6 +14641,7 @@ h1 + p, .h1 + p {
.hero-content {
width: 95%;
margin: auto;
height: 670px;
}
}
.hero-content h1, .hero-content .h1 {
......@@ -14677,6 +14692,12 @@ h1 + p, .h1 + p {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='22.828' viewBox='0 0 22.828 22.828'%3E%3Cg id='btn_close_modal' data-name='btn_close modal' transform='translate(1.414 1.414)'%3E%3Cline id='Line_14' data-name='Line 14' x2='28.284' transform='translate(0) rotate(45)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_15' data-name='Line 15' x2='28.284' transform='translate(20 0) rotate(135)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 900px) {
.home .hero-content {
height: 670px;
}
}
#wrapper-footer {
background-color: #183668;
}
......@@ -14715,7 +14736,9 @@ h1 + p, .h1 + p {
}
@media only screen and (max-width: 768px) {
.page-template-login .login-footer {
bottom: -20px;
margin-top: -140px;
bottom: 0px;
position: relative;
}
}
.page-template-login .login-footer-text {
......@@ -14768,6 +14791,11 @@ h1 + p, .h1 + p {
.page-template-login .hero-content .um .um-field-checkbox-option {
color: #000 !important;
}
@media only screen and (max-width: 768px) {
.page-template-login .hero-content {
min-height: 105vh;
}
}
.page-template-login #wrapper-footer {
display: none;
}
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -17,6 +17,10 @@ html, body {
}
#page{
overflow-x: hidden;
@media only screen and (max-width: 768px) {
height: 100vh;
padding-bottom: 50px;
}
}
#error-404-wrapper,
#content,
......
......@@ -18,6 +18,9 @@
background-size: cover;
width: 100%;
position: relative;
@media only screen and (max-width: 900px) {
height: auto;
}
}
.full-image::after {
content: "";
......@@ -39,6 +42,7 @@
@media only screen and (max-width: 900px) {
width: 95%;
margin: auto;
height: 670px;
}
h1 {
color: #fff;
......@@ -90,3 +94,10 @@
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='22.828' viewBox='0 0 22.828 22.828'%3E%3Cg id='btn_close_modal' data-name='btn_close modal' transform='translate(1.414 1.414)'%3E%3Cline id='Line_14' data-name='Line 14' x2='28.284' transform='translate(0) rotate(45)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_15' data-name='Line 15' x2='28.284' transform='translate(20 0) rotate(135)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
}
.home{
.hero-content {
@media only screen and (max-width: 900px) {
height: 670px;
}
}
}
\ No newline at end of file
......
......@@ -20,10 +20,8 @@
background-size: cover;
width: 100%;
position: relative;
@media only screen and (max-width: 768px) {
}
}
.login-footer {
display: block;
position: absolute;
......@@ -38,7 +36,9 @@
background-image: url("../images/logo-border.png");
font-family:"trade-gothic-next";
@media only screen and (max-width: 768px) {
bottom:-20px;
margin-top: -140px;
bottom:0px;
position: relative;
}
}
.login-footer-text{
......@@ -91,6 +91,9 @@
}
}
@media only screen and (max-width: 768px) {
min-height: 105vh;
}
}
......