提交 9d50e7d7 编写于 作者: G Gabriele Cirulli

add bitcoin donate button

上级 39f229a9
...@@ -76,7 +76,9 @@ ...@@ -76,7 +76,9 @@
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Check out 2048, a game where you join numbers to score high! #2048game" data-via="gabrielecirulli">Tweet</a> <a href="https://twitter.com/share" class="twitter-share-button" data-text="Check out 2048, a game where you join numbers to score high! #2048game" data-via="gabrielecirulli">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<span class="btc-donate"> <span class="btc-donate">
<a href="bitcoin:1Ec6onfsQmoP9kkL3zkpB6c5sA4PVcXU2i">
<img src="meta/icon_bitcoin.png">Donate <img src="meta/icon_bitcoin.png">Donate
</a>
<span class="address"><code>1Ec6onfsQmoP9kkL3zkpB6c5sA4PVcXU2i</code></span> <span class="address"><code>1Ec6onfsQmoP9kkL3zkpB6c5sA4PVcXU2i</code></span>
</span> </span>
</div> </div>
......
...@@ -642,4 +642,56 @@ hr { ...@@ -642,4 +642,56 @@ hr {
.game-message .lower { .game-message .lower {
margin-top: 30px !important; } } margin-top: 30px !important; } }
.btc-donate { .btc-donate {
font-size: 14px; } position: relative;
margin-left: 20px;
display: inline-block;
background: #8f7a66;
border-radius: 3px;
padding: 0 20px;
text-decoration: none;
color: #f9f6f2;
height: 40px;
line-height: 42px;
cursor: pointer; }
.btc-donate img {
vertical-align: -2px;
margin-right: 8px; }
.btc-donate a {
color: #f9f6f2;
text-decoration: none;
font-weight: normal; }
.btc-donate .address {
cursor: auto;
position: absolute;
width: 340px;
right: 50%;
margin-right: -170px;
padding-bottom: 7px;
top: 40px;
opacity: 0;
-webkit-transition: 200ms ease;
-moz-transition: 200ms ease;
-webkit-transition-property: top, opacity;
-moz-transition-property: top, opacity; }
.btc-donate .address:after {
position: absolute;
border-top: 10px solid #bbada0;
border-right: 7px solid transparent;
border-left: 7px solid transparent;
content: "";
bottom: 0px;
left: 50%;
margin-left: -7px; }
.btc-donate .address code {
background-color: #bbada0;
padding: 10px 15px;
width: 100%;
border-radius: 3px;
line-height: 1;
font-weight: normal;
font-size: 15px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
text-align: center; }
.btc-donate:hover .address, .btc-donate .address:hover .address {
opacity: 1;
top: -45px; }
...@@ -493,5 +493,68 @@ hr { ...@@ -493,5 +493,68 @@ hr {
// Bitcoin donate button // Bitcoin donate button
.btc-donate { .btc-donate {
font-size: 14px; // font-size: 14px;
position: relative;
margin-left: 20px;
@include button;
cursor: pointer;
img {
vertical-align: -2px;
margin-right: 8px;
}
a {
color: $bright-text-color;
text-decoration: none;
font-weight: normal;
}
.address {
// display: none;
cursor: auto;
position: absolute;
// background: red;
width: 340px;
right: 50%;
margin-right: -170px;
padding-bottom: 7px;
top: 40px;
opacity: 0;
@include transition(200ms ease);
@include transition-property(top, opacity);
&:after {
position: absolute;
border-top: 10px solid $game-container-background;
border-right: 7px solid transparent;
border-left: 7px solid transparent;
content: "";
bottom: 0px;
left: 50%;
margin-left: -7px;
}
code {
background-color: $game-container-background;
padding: 10px 15px;
width: 100%;
border-radius: 3px;
line-height: 1;
font-weight: normal;
font-size: 15px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
text-align: center;
}
}
&:hover, .address:hover {
.address {
opacity: 1;
top: -45px;
}
}
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册