Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. /* TABS ONLY USING CSS */
  2.  
  3. .tabs {
  4. float: none;
  5. list-style: none;
  6. }
  7. .tabs:after {
  8. content: '';
  9. display: table;
  10. clear: both;
  11. }
  12. .tabs input[type=radio] {
  13. display:none;
  14. }
  15. .tabs label {
  16. display: block;
  17. float: left;
  18. width: calc(20% - 4px);
  19. text-decoration: none;
  20. text-align: center;
  21. cursor: pointer;
  22. -webkit-transition: all 0.5s; /* Safari 3.1 to 6.0 */
  23. transition: all 0.5s;
  24. }
  25. .tabs label span {
  26. display: none;
  27. }
  28.  
  29. .tabs label:hover h3{
  30. color: $dark-gold;
  31. }
  32. .tab-content {
  33. display: none;
  34. width: 100%;
  35. float: left;
  36. }
  37.  
  38.  
  39. .tabs [id^="tab"]:checked + label h3{
  40. color: $dark-gold;
  41. }
  42. #tab1:checked ~ #tab-content1,
  43. #tab2:checked ~ #tab-content2,
  44. #tab3:checked ~ #tab-content3,
  45. #tab4:checked ~ #tab-content4,
  46. #tab5:checked ~ #tab-content5 {
  47. display: block;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement