style2.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. body {
  2. background: #fff;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. #holder {
  7. width: 100%;
  8. }
  9. #holder > div {
  10. clear: both;
  11. padding: 2%;
  12. margin-bottom: 20px;
  13. border-bottom: 1px solid #eee;
  14. float: left;
  15. width: 96%;
  16. }
  17. label {
  18. display: inline;
  19. }
  20. /*---------------------------------------------------------------------------*/
  21. .regular-checkbox {
  22. display: none;
  23. }
  24. .regular-checkbox + label {
  25. background-color: #fafafa;
  26. border: 1px solid #cacece;
  27. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  28. padding: 9px;
  29. border-radius: 3px;
  30. display: inline-block;
  31. position: relative;
  32. }
  33. .regular-checkbox + label:active, .regular-checkbox:checked + label:active {
  34. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
  35. }
  36. .regular-checkbox:checked + label {
  37. background-color: #e9ecee;
  38. border: 1px solid #adb8c0;
  39. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  40. color: #99a1a7;
  41. }
  42. .regular-checkbox:checked + label:after {
  43. content: '\2714';
  44. font-size: 14px;
  45. position: absolute;
  46. top: 0px;
  47. left: 3px;
  48. color: #99a1a7;
  49. }
  50. /*---------------------------------------------------------------------------*/
  51. .big-checkbox + label {
  52. padding: 18px;
  53. }
  54. .big-checkbox:checked + label:after {
  55. font-size: 28px;
  56. left: 6px;
  57. }
  58. .tag {
  59. font-family: Arial, sans-serif;
  60. width: 200px;
  61. position: relative;
  62. top: 5px;
  63. font-weight: bold;
  64. text-transform: uppercase;
  65. display: block;
  66. float: left;
  67. }
  68. /*---------------------------------------------------------------------------*/
  69. .radio-1 {
  70. width: 193px;
  71. }
  72. .button-holder {
  73. float: left;
  74. }
  75. /* RADIO */
  76. .regular-radio {
  77. display: none;
  78. }
  79. .regular-radio + label {
  80. -webkit-appearance: none;
  81. background-color: #fafafa;
  82. border: 1px solid #cacece;
  83. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  84. padding: 9px;
  85. border-radius: 50px;
  86. display: inline-block;
  87. position: relative;
  88. }
  89. .regular-radio:checked + label:after {
  90. content: ' ';
  91. width: 12px;
  92. height: 12px;
  93. border-radius: 50px;
  94. position: absolute;
  95. top: 3px;
  96. background: #99a1a7;
  97. box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  98. text-shadow: 0px;
  99. left: 3px;
  100. font-size: 32px;
  101. }
  102. .regular-radio:checked + label {
  103. background-color: #e9ecee;
  104. color: #99a1a7;
  105. border: 1px solid #adb8c0;
  106. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1), inset 0px 0px 10px rgba(0, 0, 0, 0.1);
  107. }
  108. .regular-radio + label:active, .regular-radio:checked + label:active {
  109. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
  110. }
  111. /*---------------------------------------------------------------------------*/
  112. .big-radio + label {
  113. padding: 16px;
  114. }
  115. .big-radio:checked + label:after {
  116. width: 24px;
  117. height: 24px;
  118. left: 4px;
  119. top: 4px;
  120. }
  121. /* ------- IGNORE */
  122. /*#header {
  123. width: 100%;
  124. margin: 0px auto;
  125. }
  126. #header #center {
  127. text-align: center;
  128. }
  129. #header h1 span {
  130. color: #000;
  131. display: block;
  132. font-size: 50px;
  133. }
  134. #header p {
  135. font-family: 'Georgia', serif;
  136. }
  137. #header h1 {
  138. color: #892dbf;
  139. font: bold 40px 'Bree Serif', serif;
  140. }
  141. #travel {
  142. padding: 10px;
  143. background: rgba(0, 0, 0, 0.6);
  144. border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  145. font-variant: normal;
  146. text-decoration: none;
  147. margin-bottom: 20px;
  148. }
  149. #travel a {
  150. font-family: 'Georgia', serif;
  151. text-decoration: none;
  152. border-bottom: 1px solid #f9f9f9;
  153. color: #f9f9f9;
  154. }*/