fireworks fix

This commit is contained in:
Jerry
2021-09-09 16:33:01 +03:00
parent ac9ce7abd0
commit d1fe4cba8a
6 changed files with 106 additions and 22 deletions

View File

@@ -98,7 +98,13 @@ body {
display: inline-block; } display: inline-block; }
.wrapper { .wrapper {
display: block; display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
position: relative; position: relative;
min-height: 100%; min-height: 100%;
background-color: #f5f5f5; background-color: #f5f5f5;
@@ -113,8 +119,7 @@ body {
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-box-direction: normal; -webkit-box-direction: normal;
-ms-flex-direction: column; -ms-flex-direction: column;
flex-direction: column; flex-direction: column; }
min-height: 100%; }
.wrapper.new-footer .content { .wrapper.new-footer .content {
-webkit-box-flex: 1; -webkit-box-flex: 1;
-ms-flex: 1 1 auto; -ms-flex: 1 1 auto;
@@ -126,7 +131,10 @@ body {
.content { .content {
padding: 40px 0 0; padding: 40px 0 0;
margin-bottom: 320px; } margin-bottom: 40px;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto; }
.content.no-pb { .content.no-pb {
padding-bottom: 0; padding-bottom: 0;
margin-bottom: 0; } margin-bottom: 0; }
@@ -1081,6 +1089,34 @@ blockquote {
.modal .modal-dialog .modal-head .cont { .modal .modal-dialog .modal-head .cont {
color: #3090f0; } color: #3090f0; }
@media (max-width: 768px) {
.modal.redirect {
padding: 10px !important; } }
.modal.redirect .modal-body p {
color: #475669;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3); }
.modal.redirect .modal-body p.big {
font-size: 16px; }
@media (min-width: 540px) {
.modal.redirect .modal-body p.mr {
margin-right: 50%; } }
.modal.redirect .modal-dialog {
padding: 0 0 15px;
background-image: url("../img/modal-redirect.png");
background-repeat: no-repeat;
background-position: right bottom;
background-size: 50% auto;
min-height: 0; }
.modal.redirect .modal-footer {
text-align: left; }
@media (min-width: 768px) {
.modal.redirect .cont {
padding: 0 30px; } }
/* Header. */ /* Header. */
header { header {
height: 40px; height: 40px;
@@ -1276,12 +1312,6 @@ header {
header .sign-block { header .sign-block {
display: inline-block; display: inline-block;
right: auto; } } right: auto; } }
header .sign-block .business-link {
border-top: 1px solid #999; }
header .sign-block .business-link + li {
border-top: 1px solid #999; }
header .sign-block .business-link + .business-link {
border-top: 0; }
header .sign-block .signed-user-block { header .sign-block .signed-user-block {
position: relative; } position: relative; }
header .sign-block .signed-user-block .user-options-list, header .sign-block .signed-user-block .user-options-list,
@@ -1311,6 +1341,22 @@ header {
header .sign-block .signed-user-block .dropdown-menu a:hover { header .sign-block .signed-user-block .dropdown-menu a:hover {
text-decoration: none; text-decoration: none;
background: #eee; } background: #eee; }
header .sign-block .signed-user-block .user-options-list .account-links,
header .sign-block .signed-user-block .dropdown-menu .account-links {
border-top: 1px solid #D5D5D5;
border-bottom: 1px solid #D5D5D5;
margin: 3px 20px;
padding: 8px 0 0; }
header .sign-block .signed-user-block .user-options-list .account-links .gray,
header .sign-block .signed-user-block .dropdown-menu .account-links .gray {
display: block;
font-size: 12px;
color: #848484;
margin-bottom: 3px; }
header .sign-block .signed-user-block .user-options-list .account-links a,
header .sign-block .signed-user-block .dropdown-menu .account-links a {
margin: 0 -20px;
padding-left: 40px; }
header .sign-block .signed-user-block .dropdown-menu .profile-with-warning { header .sign-block .signed-user-block .dropdown-menu .profile-with-warning {
display: block; display: block;
position: relative; } position: relative; }
@@ -1616,10 +1662,7 @@ header {
/* Footer. */ /* Footer. */
footer { footer {
display: block; display: block;
position: absolute; position: relative;
z-index: 10;
left: 0;
bottom: 0;
width: 100%; width: 100%;
background: #fff; background: #fff;
border-top: 1px solid #ccc; border-top: 1px solid #ccc;
@@ -1627,7 +1670,10 @@ footer {
box-shadow: 0 -1px 0 #fff; box-shadow: 0 -1px 0 #fff;
text-align: center; text-align: center;
font-size: 12px; font-size: 12px;
min-height: 84px; } min-height: 84px;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto; }
footer .cont { footer .cont {
padding: 0 20px; } padding: 0 20px; }
@media (min-width: 769px) { @media (min-width: 769px) {
@@ -3756,3 +3802,11 @@ footer {
.promo-popup .pp-close:hover { .promo-popup .pp-close:hover {
color: #999; color: #999;
text-decoration: none; } text-decoration: none; }
.fireworks-container {
display: block;
position: fixed;
width: 100%;
height: 100%;
z-index: 1045;
pointer-events: none; }

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -213,16 +213,46 @@
.modal .modal-dialog .modal-head .cont { .modal .modal-dialog .modal-head .cont {
color: #3090f0; } color: #3090f0; }
@media (max-width: 768px) {
.modal.redirect {
padding: 10px !important; } }
.modal.redirect .modal-body p {
color: #475669;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3); }
.modal.redirect .modal-body p.big {
font-size: 16px; }
@media (min-width: 540px) {
.modal.redirect .modal-body p.mr {
margin-right: 50%; } }
.modal.redirect .modal-dialog {
padding: 0 0 15px;
background-image: url("../img/modal-redirect.png");
background-repeat: no-repeat;
background-position: right bottom;
background-size: 50% auto;
min-height: 0; }
.modal.redirect .modal-footer {
text-align: left; }
@media (min-width: 768px) {
.modal.redirect .cont {
padding: 0 30px; } }
header { header {
background: #fff; } background: #fff; }
header .main-logo { header .main-logo {
height: 33px; height: 24px;
top: 5px; top: 50%;
left: -5px; } -webkit-transform: translateY(-50%);
transform: translateY(-50%);
left: 10px; }
@media (min-width: 769px) { @media (min-width: 769px) {
header .main-logo { header .main-logo {
top: 20px; left: 40px;
left: 40px; } } height: 28px; } }
header .header-menu ul li a { header .header-menu ul li a {
color: #0c4e91; color: #0c4e91;
font-weight: bold; } font-weight: bold; }

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB