card.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. html, body, div, span, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. abbr, address, cite, code,
  4. del, dfn, em, img, ins, kbd, q, samp,
  5. small, strong, sub, sup, var,
  6. b, i,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, figcaption, figure,
  11. footer, header, hgroup, menu, nav, section, summary,
  12. time, mark, audio, video {
  13. margin:0;
  14. padding:0;
  15. border:0;
  16. outline:0;
  17. font-size:100%;
  18. vertical-align:baseline;
  19. background:transparent;
  20. }
  21. body {
  22. line-height: 1;
  23. }
  24. h1, h2, h3, h4, h5, h6 {
  25. clear: both;
  26. font-weight: normal;
  27. }
  28. ol, ul {
  29. list-style: none;
  30. }
  31. blockquote {
  32. quotes: none;
  33. }
  34. blockquote:before, blockquote:after {
  35. content: '';
  36. content: none;
  37. }
  38. del {
  39. text-decoration: line-through;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border-spacing: 0;
  44. }
  45. a img {
  46. border: none;
  47. }
  48. .clear {
  49. clear: both;
  50. }
  51. body {
  52. background: rgba(160,160,160,0.73) url(img/3.png);
  53. }
  54. body,
  55. input,
  56. textarea {
  57. color: #666;
  58. font-size: 12px;
  59. line-height: 18px;
  60. }
  61. hr {
  62. background-color: #e7e7e7;
  63. border: 0;
  64. clear: both;
  65. height: 1px;
  66. margin-bottom: 18px;
  67. }
  68. /* Text elements */
  69. p {
  70. font-size: 13px;
  71. margin-bottom: 8px;
  72. }
  73. h4 {
  74. font-size: 13px;
  75. margin-bottom: 10px;
  76. }
  77. h3 {
  78. font-size: 14px;
  79. margin-bottom: 0px;
  80. }
  81. h2 {
  82. font-size: 16px;
  83. margin-left: 25px;
  84. }
  85. p.noindent {
  86. margin-bottom: 10px;
  87. text-indent : 0px;
  88. }
  89. a:link {
  90. color: #000;
  91. text-decoration: none;
  92. }
  93. a:visited {
  94. color: #000;
  95. text-decoration: none;
  96. }
  97. a:active,
  98. a:hover {
  99. color: #757576;
  100. text-decoration: none;
  101. }
  102. /* Text meant only for screen readers */
  103. .screen-reader-text {
  104. position: absolute;
  105. left: -9000px;
  106. }
  107. /* =Layout
  108. -------------------------------------------------------------- */
  109. body {
  110. padding: 0;
  111. margin: 0;
  112. }
  113. .header {
  114. margin: 0 0 50px 0;
  115. }
  116. #container {
  117. margin: 0 auto;
  118. text-align: center;
  119. }
  120. #content {
  121. margin: 150px auto;
  122. width:500px;
  123. background: #fff;
  124. padding: 20px;
  125. border: 1px solid #dadada;
  126. }
  127. #content img {
  128. float: left;
  129. margin: -5px 0 -40px 95px;
  130. }
  131. #content .icons img {
  132. margin: 3px;
  133. float: none;
  134. }
  135. .card #content {
  136. margin: 150px auto;
  137. -webkit-animation-name: none;
  138. -webkit-animation-iteration-count: infinite;
  139. -webkit-animation-timing-function: linear;
  140. -webkit-animation-duration: 400s;
  141. z-index:-1;
  142. width:450px;
  143. border-top: 1px solid #fff;
  144. -webkit-box-shadow: 0px 3px 5px #cbcbcb;
  145. -moz-box-shadow: 0px 3px 5px #cbcbcb;
  146. box-shadow: 0px 3px 5px #cbcbcb;
  147. -webkit-border-radius: 4px;
  148. -moz-border-radius: 4px;
  149. border-radius: 4px;
  150. }
  151. .bottom {
  152. margin-top: 32px;
  153. }
  154. .bottom p {
  155. margin: 0;
  156. }
  157. .bottom a {
  158. color: #666;
  159. }
  160. .left-bottom {
  161. float: left;
  162. display: block;
  163. text-align: left;
  164. margin: 0px 0 0 50px;
  165. }
  166. .left-bottom p {
  167. font-size: 9px;
  168. }
  169. .right-bottom {
  170. margin: 0px 50px 0 0;
  171. text-align: right;
  172. font-size: 9px;
  173. }
  174. .right-bottom p {
  175. font-size: 9px;
  176. }
  177. .contact {
  178. font-size: 12px;
  179. }
  180. @-webkit-keyframes Rotation {
  181. from {
  182. -webkit-transform: rotate(0deg);
  183. }
  184. to {
  185. -webkit-transform: rotate(360deg);
  186. }
  187. }
  188. @media (max-width: 480px) {
  189. .card #content {
  190. -webkit-animation-name: none;
  191. width:550px;
  192. }
  193. h2 {
  194. font-size: 21px;
  195. }
  196. h3 {
  197. font-size: 19px;
  198. }
  199. h4 {
  200. font-size: 17px;
  201. }
  202. .header {
  203. margin: 0 0 55px 0;
  204. }
  205. #content img {
  206. margin: -5px 0 -40px 80px;
  207. }
  208. .bottom {
  209. margin-top: 50px;
  210. }
  211. .bottom p {
  212. font-size: 9px;
  213. }
  214. }