front-page.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /* @override http://macs.local/david/wp-content/themes/dw/css/front-page.css */
  2. html, body, div, span, object, iframe,
  3. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  4. abbr, address, cite, code,
  5. del, dfn, em, img, ins, kbd, q, samp,
  6. small, strong, sub, sup, var,
  7. b, i,
  8. dl, dt, dd, ol, ul, li,
  9. fieldset, form, label, legend,
  10. table, caption, tbody, tfoot, thead, tr, th, td,
  11. article, aside, canvas, details, figcaption, figure,
  12. footer, header, hgroup, menu, nav, section, summary,
  13. time, mark, audio, video {
  14. margin:0;
  15. padding:0;
  16. border:0;
  17. outline:0;
  18. font-size:100%;
  19. vertical-align:baseline;
  20. background:transparent;
  21. }
  22. body {
  23. padding: 0;
  24. margin: 0;
  25. background: rgba(242, 242, 242, 0.7);
  26. color: #666;
  27. font-size: 12px;
  28. line-height: 18px;
  29. }
  30. .col-centered {
  31. float: none;
  32. margin: 0 auto;
  33. }
  34. h1, h2, h3, h4, h5, h6 {
  35. clear: both;
  36. font-weight: normal;
  37. }
  38. a img {
  39. border: none;
  40. }
  41. p {
  42. font-size: 14px;
  43. margin-bottom: 8px;
  44. }
  45. h2 {
  46. font-size: 16px;
  47. }
  48. h3 {
  49. font-size: 14px;
  50. }
  51. h4 {
  52. font-size: 13px;
  53. margin-bottom: 15px;
  54. }
  55. p.noindent {
  56. margin-bottom: 10px;
  57. text-indent : 0px;
  58. }
  59. a:link {
  60. color: #000;
  61. text-decoration: none;
  62. }
  63. a:visited {
  64. color: #000;
  65. text-decoration: none;
  66. }
  67. a:active,
  68. a:hover {
  69. color: #757576;
  70. text-decoration: none;
  71. }
  72. a:active, a:focus, input {
  73. outline: 0;
  74. outline-style:none;
  75. outline-width:0;
  76. }
  77. .screen-reader-text {
  78. position: absolute;
  79. left: -9000px;
  80. }
  81. .header {
  82. margin: 0 0 50px 0;
  83. }
  84. .container {
  85. margin: 0 auto;
  86. text-align: center;
  87. }
  88. .card .logo .svg {
  89. margin: 0 auto;
  90. }
  91. .card .content {
  92. margin: 100px auto;
  93. width:450px;
  94. background: #fff;
  95. padding: 70px 20px 40px;
  96. -webkit-animation-name: none;
  97. -webkit-animation-iteration-count: infinite;
  98. -webkit-animation-timing-function: linear;
  99. -webkit-animation-duration: 400s;
  100. border-top: 1px solid #fff;
  101. -webkit-box-shadow: 0px 3px 5px #cbcbcb;
  102. -moz-box-shadow: 0px 3px 5px #cbcbcb;
  103. box-shadow: 0px 3px 5px #cbcbcb;
  104. -webkit-border-radius: 4px;
  105. -moz-border-radius: 4px;
  106. border-radius: 4px;
  107. }
  108. .vcenter {
  109. display: inline-block;
  110. vertical-align: middle;
  111. float: none;
  112. }
  113. #icon {
  114. display: block;
  115. box-sizing: border-box;
  116. margin:0 0 -34px 50px;
  117. padding: 0;
  118. width:50px;
  119. height:50px;
  120. background: #FFF;
  121. }
  122. .card .search {
  123. margin: 10px;
  124. }
  125. .card-bottom {
  126. margin-top: 20px;
  127. }
  128. .bottom p {
  129. margin: 0;
  130. font-size: 14px;
  131. }
  132. .bottom a {
  133. color: #666;
  134. }
  135. .left-bottom {
  136. float: left;
  137. display: block;
  138. text-align: left;
  139. margin: 0px 0 0 50px;
  140. }
  141. .left-bottom p {
  142. font-size: 9px;
  143. }
  144. .right-bottom {
  145. margin: 0px 50px 0 0;
  146. text-align: right;
  147. font-size: 9px;
  148. }
  149. .right-bottom p {
  150. font-size: 9px;
  151. }
  152. .contact-info {
  153. font-size: 12px;
  154. }
  155. @-webkit-keyframes Rotation {
  156. from {-webkit-transform: rotate(0deg);}
  157. to {-webkit-transform: rotate(360deg);}
  158. }
  159. @media (max-width: 480px) {
  160. .card .content {
  161. margin: 50px auto;
  162. -webkit-animation-name: none;
  163. width:85%;
  164. }
  165. .header {
  166. margin: 0 0 55px 0;
  167. }
  168. #icon {
  169. display: inline;
  170. box-sizing: border-box;
  171. margin:0 0 0px 0px;
  172. padding: 0;
  173. width:50px;
  174. height:50px;
  175. background: #FFF;
  176. }
  177. }