Advertisement
Guest User

eisenbahnfans.ch Checkbox CSS

a guest
Nov 26th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.74 KB | None | 0 0
  1. #checkbox {
  2.     float:left;
  3.     margin-top:-35pt;
  4.     margin-left:0px;
  5.     margin-bottom:0px;
  6.     margin-right:0px;
  7.     padding-right: 15px;
  8.     width:100%;
  9.     height:0px;
  10. }
  11.  
  12. #checkbox a:link    { color:black;   text-decoration:none; }
  13. #checkbox a:visited { color:black;  text-decoration:none; }
  14. #checkbox a:focus   { color:black;  text-decoration:none; }
  15. #checkbox a:hover   { color:black; font-weight: bold; text-decoration:none; }
  16. #checkbox a:active  { color:black; text-decoration:none; }
  17.  
  18. .checkbox {
  19.     display: block;
  20.     position: relative;
  21.     z-index: 2;
  22. }
  23.    
  24. .checkbox input[type=checkbox] {
  25.     display: none;
  26. }
  27.  
  28. .checkbox label {
  29.     position: relative;
  30.     display: inline-block;
  31.     width:100%;
  32.     padding: 8px 0px 8px 30px;
  33.     background: red;
  34.     color: #fff;
  35.     font-weight: 600;
  36.     font-size: 20pt;
  37.     text-transform: uppercase;
  38.     cursor: pointer;
  39. }
  40.  
  41. .checkbox label:before {
  42.     position: absolute;
  43.     content: "";
  44.     width: 0;
  45.     height: 0;
  46.     top: 50%;
  47.     left: 11px;
  48.     margin-top: -9pt;
  49.     border-left: 8pt solid #fff;
  50.     border-top: 8pt solid transparent;
  51.     border-right: 8pt solid transparent;
  52.     border-bottom: 8pt solid transparent;
  53. }
  54.  
  55. .checkbox input[type=checkbox]:checked ~ label:before {
  56.     margin-left: -5pt;
  57.     margin-top: -4pt;
  58.     border-left: 8pt solid transparent;
  59.     border-top: 8pt solid #fff;
  60.     border-bottom: 8pt solid transparent;
  61.     border-right: 8pt solid transparent;
  62. }
  63.  
  64. .checkbox h4 {
  65.      background-color:silver;
  66.      display: none;
  67.      border-top:1px black solid;
  68.      border-left:25px red solid;
  69.      border-bottom:0px red solid;
  70.      border-right:2px red solid;
  71.      margin:0px;
  72.      width:99.1%;
  73.      padding:8px;
  74.      font-weight:lighter;
  75. }
  76.  
  77. .checkbox input[type=checkbox]:checked ~ h4 {
  78.     display: block;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement