Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- a{
- text-decoration: none;
- font-size: 1em;
- font-weight:bold;
- }
- a:hover {
- letter-spacing:1.5px;
- color:white;
- transition:.3s;
- text-decoration: none;
- }
- a { letter-spacing:normal; transition:.3s;}
- .poop {
- -webkit-transform: rotateZ(350deg);
- transform: rotateZ(350deg);
- z-index:222222;
- animation: pop 1s infinite;
- -webkit-animation: pop 1s infinite;
- }
- @keyframes pop {
- from {
- transform:scale(0.90)
- }
- 50% {
- transform:scale(1.01)
- }
- to {
- transform:scale(0.90)
- }
- }
- @-webkit-keyframes pop {
- from {
- -webkit-transform:scale(0.95)
- }
- 50% {
- -webkit-transform:scale(1)
- }
- to {
- -webkit-transform:scale(0.95)
- }
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement