Advertisement
planthed

Links table #2

Mar 2nd, 2016
1,772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. /*CODES BY PAINTHEMES*/
  2. #linkstable{width:300px;}
  3.  
  4. .ltitle{
  5. padding:10px;
  6. background:#ffffff; /*background of the popup title*/
  7. border:1px solid #000; /*border of the popup title*/
  8. font-family:Montserrat; /*title font*/
  9. color:#000; /*color of the title*/
  10. font-size:23px;
  11. text-align:center;
  12. letter-spacing:2px;
  13. text-transform:uppercase;
  14. }
  15.  
  16. #linkstable a{
  17. position:relative;
  18. width:126px;
  19. padding:10px;
  20. background:#fff; /*background of the links table*/
  21. border:1px solid #000; /*border of the links table*/
  22. color:#000; /*color of the links*/
  23. display:inline-block;
  24. margin-top:5px;
  25. font-family:Calibri; /*links font*/
  26. text-transform:uppercase;
  27. font-size:8px; /*links size*/
  28. letter-spacing:2px;
  29. -webkit-transition: opacity 0.7s linear;
  30. -webkit-transition: all 0.7s ease-in-out;
  31. -moz-transition: all 0.7s ease-in-out;
  32. -o-transition: all 0.7s ease-in-out;
  33. }
  34.  
  35. #linkstable a:hover{
  36. color:#fff; /*color of the links hover*/
  37. border:1px solid #000;
  38. letter-spacing:5px; /*spacing between letters in hover*/
  39. box-shadow:inset 200px 0px 0px 0px #000; /*colof of the links backround hover*/
  40. -webkit-transition: opacity 0.7s linear;
  41. -webkit-transition: all 0.7s ease-in-out;
  42. -moz-transition: all 0.7s ease-in-out;
  43. -o-transition: all 0.7s ease-in-out;
  44. }
  45.  
  46. /*font of the title*/
  47. @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement