add app notice
This commit is contained in:
+121
-1
@@ -919,7 +919,7 @@ hr {
|
||||
opacity: 1;
|
||||
top: -45px;
|
||||
pointer-events: auto; }
|
||||
@media screen and (max-width: 480px) {
|
||||
@media screen and (max-width: 520px) {
|
||||
.btc-donate {
|
||||
width: 120px; }
|
||||
.btc-donate .address {
|
||||
@@ -930,3 +930,123 @@ hr {
|
||||
.btc-donate .address:after {
|
||||
left: 50%;
|
||||
bottom: 2px; } }
|
||||
|
||||
@-webkit-keyframes pop-in-big {
|
||||
0% {
|
||||
-webkit-transform: scale(0) translateZ(0);
|
||||
-moz-transform: scale(0) translateZ(0);
|
||||
transform: scale(0) translateZ(0);
|
||||
opacity: 0;
|
||||
margin-top: -56px; }
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1) translateZ(0);
|
||||
-moz-transform: scale(1) translateZ(0);
|
||||
transform: scale(1) translateZ(0);
|
||||
opacity: 1;
|
||||
margin-top: 30px; } }
|
||||
@-moz-keyframes pop-in-big {
|
||||
0% {
|
||||
-webkit-transform: scale(0) translateZ(0);
|
||||
-moz-transform: scale(0) translateZ(0);
|
||||
transform: scale(0) translateZ(0);
|
||||
opacity: 0;
|
||||
margin-top: -56px; }
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1) translateZ(0);
|
||||
-moz-transform: scale(1) translateZ(0);
|
||||
transform: scale(1) translateZ(0);
|
||||
opacity: 1;
|
||||
margin-top: 30px; } }
|
||||
@keyframes pop-in-big {
|
||||
0% {
|
||||
-webkit-transform: scale(0) translateZ(0);
|
||||
-moz-transform: scale(0) translateZ(0);
|
||||
transform: scale(0) translateZ(0);
|
||||
opacity: 0;
|
||||
margin-top: -56px; }
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1) translateZ(0);
|
||||
-moz-transform: scale(1) translateZ(0);
|
||||
transform: scale(1) translateZ(0);
|
||||
opacity: 1;
|
||||
margin-top: 30px; } }
|
||||
@-webkit-keyframes pop-in-small {
|
||||
0% {
|
||||
-webkit-transform: scale(0) translateZ(0);
|
||||
-moz-transform: scale(0) translateZ(0);
|
||||
transform: scale(0) translateZ(0);
|
||||
opacity: 0;
|
||||
margin-top: -76px; }
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1) translateZ(0);
|
||||
-moz-transform: scale(1) translateZ(0);
|
||||
transform: scale(1) translateZ(0);
|
||||
opacity: 1;
|
||||
margin-top: 10px; } }
|
||||
@-moz-keyframes pop-in-small {
|
||||
0% {
|
||||
-webkit-transform: scale(0) translateZ(0);
|
||||
-moz-transform: scale(0) translateZ(0);
|
||||
transform: scale(0) translateZ(0);
|
||||
opacity: 0;
|
||||
margin-top: -76px; }
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1) translateZ(0);
|
||||
-moz-transform: scale(1) translateZ(0);
|
||||
transform: scale(1) translateZ(0);
|
||||
opacity: 1;
|
||||
margin-top: 10px; } }
|
||||
@keyframes pop-in-small {
|
||||
0% {
|
||||
-webkit-transform: scale(0) translateZ(0);
|
||||
-moz-transform: scale(0) translateZ(0);
|
||||
transform: scale(0) translateZ(0);
|
||||
opacity: 0;
|
||||
margin-top: -76px; }
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1) translateZ(0);
|
||||
-moz-transform: scale(1) translateZ(0);
|
||||
transform: scale(1) translateZ(0);
|
||||
opacity: 1;
|
||||
margin-top: 10px; } }
|
||||
.app-notice {
|
||||
position: relative;
|
||||
-webkit-animation: pop-in-big 700ms ease 2s both;
|
||||
-moz-animation: pop-in-big 700ms ease 2s both;
|
||||
animation: pop-in-big 700ms ease 2s both;
|
||||
background: #edc53f;
|
||||
color: white;
|
||||
padding: 18px;
|
||||
margin-top: 30px;
|
||||
height: 56px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 3px; }
|
||||
.app-notice:after {
|
||||
content: "";
|
||||
display: block;
|
||||
clear: both; }
|
||||
.app-notice .notice-close-button {
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
margin-left: 10px;
|
||||
opacity: 0.7; }
|
||||
.app-notice p {
|
||||
margin-bottom: 0; }
|
||||
.app-notice, .app-notice p {
|
||||
line-height: 20px; }
|
||||
.app-notice a {
|
||||
color: white; }
|
||||
@media screen and (max-width: 520px) {
|
||||
.app-notice {
|
||||
-webkit-animation: pop-in-small 700ms ease 2s both;
|
||||
-moz-animation: pop-in-small 700ms ease 2s both;
|
||||
animation: pop-in-small 700ms ease 2s both;
|
||||
margin-top: 10px;
|
||||
height: 76px; } }
|
||||
|
||||
Reference in New Issue
Block a user