Advertisement
RenegadeAI

Upvote text addon

May 24th, 2015
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.62 KB | None | 0 0
  1. /* Addon: Upvote text */
  2.  
  3. .arrow.up:after {
  4.   display: block;
  5.   visibility: hidden;
  6.   position: absolute;
  7.   z-index: 1000;
  8.   margin-top: -6px;
  9.   margin-left: 32px;
  10.   padding: 12px;
  11.   background-color: rgba(255,85,0,0.0);
  12.   border: none;
  13.   border-radius: 2px;
  14.   color: rgba(255,255,255,0);
  15.   text-align: center;
  16.   letter-spacing: 1px;
  17.   font-weight: 400;
  18.   font-size: 13px;
  19.   transition: all .25s ease;
  20.   pointer-events: none;
  21.   content: "Thanks for upvoting!";
  22. }
  23.  
  24. .arrow.up:hover:after {
  25.   visibility: visible;
  26.   background-color: rgba(255,85,0,0.9);
  27.   color: #FFF;
  28.   margin-left: 48px;
  29. }
  30.  
  31. /* End Addon */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement