Advertisement
planthed

Links table #3 Step 1

Mar 3rd, 2016
1,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. /*CODES BY PAINTHEMES*/
  2.  
  3. #links{
  4. padding:10px;
  5. width:145px;
  6. border:1px solid #000; /*border of your first box*/
  7. background:#fff; /*background of your first box*/
  8. height:240px;
  9. overflow:auto;
  10. line-height:15px;
  11. }
  12.  
  13. #tags{
  14. padding:10px;
  15. width:145px;
  16. border:1px solid #000; /*border of your second box*/
  17. background:#fff; /*background of your second box*/
  18. line-height:15px;
  19. height:240px;
  20. overflow:auto;
  21. margin-left:180px;
  22. margin-top:-262px;
  23. }
  24.  
  25. #social{
  26. padding:10px;
  27. width:145px;
  28. border:1px solid #000; /*border of your box 3*/
  29. background:#fff; /*background of your box 3*/
  30. line-height:15px;
  31. height:240px;
  32. overflow:auto;
  33. margin-left:360px;
  34. margin-top:-262px;
  35. }
  36.  
  37. #links a, #tags a, #social a{
  38. display:block;
  39. padding:5px;
  40. width:auto;
  41. text-transform:uppercase;
  42. font-size:8px; /*size of letters*/
  43. font-family:calibri; /*font family of your links, calibri only works with windows*/
  44. text-align:left;
  45. color:#000; /*color links*/
  46. letter-spacing:2px; /*spacing between letters*/
  47. margin-top:-1px;
  48. -webkit-transition:all 0.3s ease-out;
  49. }
  50.  
  51. #links a:hover, #tags a:hover, #social a:hover{
  52. background:#000; /*background hover*/
  53. color:#fff; /*color hover*/
  54. }
  55.  
  56. #links a:before, #tags a:before, #social a:before{
  57. content:'';
  58. height:1px;
  59. width:10px;
  60. display:inline-block;
  61. background:#000; /*color of the ―*/
  62. position:relative;
  63. top:-2px;
  64. margin-right:5px;
  65. -webkit-transition:all 0.3s ease-out;
  66. }
  67.  
  68. #links a:hover:before, #tags a:hover:before, #social a:hover:before{
  69. width:31px;
  70. background:#fff; /*color hover of the ― */
  71. -webkit-transition:all 0.3s ease-out;
  72. }
  73.  
  74. /*CODES BY PAINTHEMES*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement