Guest User

Untitled

a guest
Jan 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <footer>
  2. <ul>
  3. <li class="tabs"><a href="#"></a></li>
  4. <li class="tabs"><a href="#"></a></li>
  5. <li class="tabs"><a href="#"></a></li>
  6. </ul>
  7. </footer>
  8.  
  9. footer {
  10. position: absolute;
  11. z-index: 2;
  12. bottom: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 50px;
  16. padding: 0;
  17. background: #535353;
  18. }
  19. footer ul {
  20. list-style-type: none;
  21. margin: 0;
  22. padding: 0;
  23. }
  24. footer ul li {
  25. display: inline-block;
  26. width: 31%;
  27. height: 50px;
  28. }
  29. footer ul li a {
  30. display: block;
  31. text-decoration: none;
  32. height: 100%;
  33. width: 100%;
  34. background: #fff;
  35. background: url(../../../img/tabs.png) top left no-repeat;
  36. }
  37.  
  38. footer {
  39. position: absolute;
  40. z-index: 2;
  41. bottom: 0;
  42. left: 0;
  43. width: 100%;
  44. height: 50px;
  45. padding: 0;
  46. background: #ccc; }
  47. footer ul {
  48. list-style-type: none;
  49. margin: 0;
  50. padding: 0;
  51. text-align: center; }
  52. footer ul li {
  53. display: block;
  54. float: left;
  55. width: 33.33%;
  56. line-height: 50px;
  57. text-align: center;
  58. overflow: hidden; }
  59. footer ul li a {
  60. display: block;
  61. text-decoration: none;
  62. margin: 1px;
  63. height: 100%;
  64. width: 100%;
  65. background: url(../../../img/tabs.png) center no-repeat;
  66. /*
  67. &.home {
  68. background: url(../../../img/tabs.png) top left no-repeat;
  69. }
  70. &.profile {
  71. background: url(../../../img/tabs.png) top left no-repeat;
  72. }
  73. &.cam {
  74. background: url(../../../img/tabs.png) top left no-repeat;
  75. }*/ }
  76. footer ul li a.current {
  77. margin-top: 5%;
  78. height: 80%;
  79. width: 80%;
  80. background-color: #ccc;
  81. text-indent: -9999px;
  82. border-radius: 5px;
  83. -webkit-box-shadow: inset 0 0 50px #666;
  84. -moz-box-shadow: inset 0 0 50px #666;
  85. box-shadow: inset 0 0 50px #666; }
Add Comment
Please, Sign In to add comment