Advertisement
Guest User

rreee

a guest
Sep 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. .box2 {
  2. position: fixed;
  3. right: 935px;
  4. bottom: -100px;
  5. height: 220px;
  6. width: 180px;
  7. background-color: #ac4167;
  8. font-family: veranda;
  9. color: #fff;
  10. font-size: 10px;
  11. padding: 5px;
  12. line-height: 14px;
  13. text-align: left;
  14. overflow: auto;
  15. opacity: 0;
  16. text-shadow: -2px 0px 1px #c76b8b;
  17. transition: all 0.7s ease-in-out;}
  18.  
  19. .box2:target {
  20. bottom: 165px;
  21. right: 935px;
  22. opacity: 1;
  23. transition: all 0.7s ease-in-out;}
  24.  
  25. ----
  26.  
  27.  
  28. <div id="one" class="box2"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement