823
edits
(comments) |
(annoying blinker) |
||
Line 19: | Line 19: | ||
background-image: linear-gradient(to bottom right, #4e3b2e 0%, #c1b0af 75%); | background-image: linear-gradient(to bottom right, #4e3b2e 0%, #c1b0af 75%); | ||
} | } | ||
/****************** | |||
ANNOYING BLINKER | |||
******************/ | |||
.annoying { | |||
width: 112px; | |||
margin-top: 10px; | |||
margin-bottom:10px; | |||
margin-left: 5px; | |||
margin-right: 0px; | |||
padding: 10px; | |||
border-radius: 8px; | |||
font-size: 13px; | |||
line-height: 13px; | |||
font-weight: bold; | |||
text-align:center; | |||
color: yellow; | |||
border: 2px solid yellow; | |||
background-color: red; | |||
-webkit-animation: blinker 5s linear infinite; | |||
-moz-animation: blinker 5s linear infinite; | |||
-o-animation: blinker 5s linear infinite; | |||
animation: blinker 5s linear infinite; | |||
} | |||
.annoying-money { | |||
font-size: 30px; | |||
line-height: 26px; | |||
} | |||
@-webkit-keyframes blinker { 50% { color: red; border: 2px solid red; background-color: yellow; } } | |||
@-moz-keyframes blinker { 50% { color: red; border: 2px solid red; background-color: yellow; } } | |||
@-o-keyframes blinker { 50% { color: red; border: 2px solid red; background-color: yellow; } } | |||
@keyframes blinker { 50% { color: red; border: 2px solid red; background-color: yellow; } } | |||
/****************** | /****************** |