60 lines
893 B
Stylus
60 lines
893 B
Stylus
.reward-container {
|
|
margin: 20px auto;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
width: 90%;
|
|
|
|
button {
|
|
background: transparent;
|
|
border: 1px solid #fc6423;
|
|
border-radius: 0;
|
|
color: #fc6423;
|
|
cursor: pointer;
|
|
line-height: 2;
|
|
outline: 0;
|
|
padding: 0 15px;
|
|
vertical-align: text-top;
|
|
|
|
&:hover {
|
|
background: #fc6423;
|
|
border: 1px solid transparent;
|
|
color: #fa9366
|
|
}
|
|
}
|
|
}
|
|
|
|
#qr {
|
|
padding-top: 20px;
|
|
|
|
a {
|
|
border: 0;
|
|
}
|
|
|
|
img {
|
|
display: inline-block;
|
|
margin: .8em 2em 0 2em;
|
|
max-width: 100%;
|
|
width: 180px;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
}
|
|
|
|
if (hexo-config('reward_settings.animation')) {
|
|
> div:hover p {
|
|
animation: roll .1s infinite linear;
|
|
}
|
|
|
|
@keyframes roll {
|
|
from {
|
|
transform: rotateZ(30deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotateZ(-30deg);
|
|
}
|
|
}
|
|
}
|
|
}
|