Advertisement
androidmaker155

tab.css

Sep 10th, 2014
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.90 KB | None | 0 0
  1. .tabs {
  2.   position: relative;
  3.   width: 680px;
  4.   min-height: 350px;
  5.   margin: 1.2em auto 1em auto;
  6. }
  7. .tabs .tab {
  8.   display: inline-block;
  9.   margin: 0 -1px;
  10. }
  11. .tabs .tab label {
  12.   position: relative;
  13.   margin: 0;
  14.   background: #dadada;
  15.   border: 1px solid #ccc;
  16.   border-bottom: none;
  17.   -moz-border-radius:.5em;
  18.   -webkit-border-radius:.5em;
  19.   -khtml-border-radius:.5em;
  20.   border-radius:.5em;
  21.   padding: .5em .6em;
  22.   font-weight: 700;
  23.   cursor: pointer;
  24. }
  25. .tabs .tab [type=radio] {
  26.   display: none;
  27. }
  28. .tabs .tab [type=radio]:checked ~ label {
  29.   background: #d8fbda;
  30.   border-bottom: 1px solid white;
  31.   text-decoration: underline;
  32. }
  33. .tabs .tab [type=radio]:checked ~ label ~ .content {
  34.   display: block;
  35. }
  36. .tabs .tab .content {
  37.   display:none;
  38.   position: absolute;
  39.   top: 1.7em;
  40.   left: 0;
  41.   right: 0;
  42.   background: #fdfdee;
  43.   border: 1px solid #ccc;
  44.   padding: .3em .8em;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement