Advertisement
Guest User

931171

a guest
Sep 15th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.98 KB | None | 0 0
  1. .form-matrix-table input[type='checkbox'], .form-matrix-table input[type='radio'] {
  2.     -webkit-appearance : none;
  3.     -webkit-user-select : none;
  4.     border: 2px solid #9c9c9c !important;
  5.     border-radius : 2px;
  6.     color : #444;
  7.     font : inherit;
  8.     margin : 0 1px 0 0;
  9.     outline : none !important;
  10.     text-shadow : 0 1px 0 #F0F0F0;
  11.     cursor : pointer;
  12. }
  13.  
  14. .form-matrix-table input[type='radio'] {
  15.     border-radius : 100%;
  16.     bottom : 1px;
  17.     height : 18px;
  18.     position : relative;
  19.     vertical-align : middle;
  20.     width : 18px;
  21. }
  22.  
  23. .form-matrix-table input[type='checkbox'] {
  24.     bottom : 2px;
  25.     height : 18px;
  26.     position : relative;
  27.     vertical-align : middle;
  28.     width : 18px;
  29. }
  30.  
  31. .form-matrix-table input[type='checkbox']:checked::before {
  32.     -webkit-user-select : none;
  33.     background-color : #9c9c9c;
  34.     background-size : 100% 100%;
  35.     content : '';
  36.     display : block;
  37.     height : 100%;
  38.     width : 100%;
  39. }
  40.  
  41. .form-matrix-table input[type='radio']:checked::before {
  42.     background-color : #9c9c9c;
  43.     border-radius : 100%;
  44.     bottom : 3px;
  45.     content : '';
  46.     display : block;
  47.     left : 3px;
  48.     position : absolute;
  49.     top : 3px;
  50.     height : 8px;
  51.     width : 8px;
  52. }
  53.  
  54. .form-matrix-table {
  55.     border-collapse : collapse;
  56.     border-spacing : 0;
  57.     width : 100%;
  58.     height : 100%;
  59.     margin : 0px;
  60.     padding : 0px;
  61. }
  62.  
  63.  
  64.  
  65. table, tr, th, td {
  66.     border-collapse : collapse;
  67. }
  68.  
  69. table {
  70.     border : 4px solid #999;
  71.     position : relative;
  72.     overflow : hidden;
  73. }
  74.  
  75. th {
  76.     padding : 0 5px;
  77.     color : #FFF;
  78.     background : #333 !important;
  79. }
  80.  
  81. tr th:first-child {
  82.     text-align : left;
  83. }
  84.  
  85. th, td {
  86.     width : 70px;
  87.     height : 40px;
  88.     border : 2px solid #BBB;
  89. }
  90.  
  91. .form-matrix-column-headers {
  92.     color : white;
  93.     font-size: 14px;
  94.     font-weight: bold;
  95. }
  96.  
  97. .form-matrix-row-headers {
  98.     font-size: 14px;
  99.     font-weight: bold;
  100. }
  101.  
  102. .form-matrix-values {
  103.     background: white;
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement