This commit is contained in:
Jerry
2020-11-27 12:32:29 +03:00
parent 563c71e4c4
commit 9cf99cfd45
7 changed files with 73 additions and 2 deletions

View File

@@ -3448,3 +3448,36 @@ footer {
font-size: 18px;
max-height: 3.6em;
-webkit-line-clamp: 3; }
.promo-popup {
z-index: 100;
display: block;
position: fixed;
right: -600px;
bottom: 10px;
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
background: #fff;
padding: 25px 15px 15px 15px;
font-size: 20px;
-webkit-transition: right ease-out 600ms;
transition: right ease-out 600ms;
border-radius: 10px;
max-width: 340px;
text-align: center; }
.promo-popup.show {
right: 10px; }
.promo-popup .pp-text {
margin-bottom: 15px;
font-weight: 600; }
.promo-popup .pp-btn {
text-align: center; }
.promo-popup .pp-close {
color: #333;
position: absolute;
right: 5px;
top: 5px;
font-size: 12px; }
.promo-popup .pp-close:hover {
color: #999;
text-decoration: none; }