card.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. padding: 0;
  23. margin: 0;
  24. background: rgba(160,160,160,0.73) url(../img/3.png);
  25. color: #666;
  26. font-size: 12px;
  27. line-height: 18px;
  28. }
  29. h1, h2, h3, h4, h5, h6 {
  30. clear: both;
  31. font-weight: normal;
  32. }
  33. ol, ul {
  34. list-style: none;
  35. }
  36. del {
  37. text-decoration: line-through;
  38. }
  39. table {
  40. border-collapse: collapse;
  41. border-spacing: 0;
  42. }
  43. a img {
  44. border: none;
  45. }
  46. p {
  47. font-size: 13px;
  48. margin-bottom: 8px;
  49. }
  50. h4 {
  51. font-size: 13px;
  52. margin-bottom: 10px;
  53. }
  54. h3 {
  55. font-size: 14px;
  56. margin-bottom: 0px;
  57. }
  58. h2 {
  59. font-size: 16px;
  60. margin-left: 25px;
  61. }
  62. p.noindent {
  63. margin-bottom: 10px;
  64. text-indent : 0px;
  65. }
  66. a:link {
  67. color: #000;
  68. text-decoration: none;
  69. }
  70. a:visited {
  71. color: #000;
  72. text-decoration: none;
  73. }
  74. a:active,
  75. a:hover {
  76. color: #757576;
  77. text-decoration: none;
  78. }
  79. .screen-reader-text {
  80. position: absolute;
  81. left: -9000px;
  82. }
  83. .header {
  84. margin: 0 0 50px 0;
  85. }
  86. #container {
  87. margin: 0 auto;
  88. text-align: center;
  89. }
  90. #content {
  91. margin: 150px auto;
  92. width:500px;
  93. background: #fff;
  94. padding: 20px;
  95. border: 1px solid #dadada;
  96. }
  97. #content img {
  98. float: left;
  99. margin: -5px 0 -40px 95px;
  100. }
  101. #content .icons img {
  102. margin: 3px;
  103. float: none;
  104. }
  105. .card #content {
  106. margin: 150px auto;
  107. -webkit-animation-name: none;
  108. -webkit-animation-iteration-count: infinite;
  109. -webkit-animation-timing-function: linear;
  110. -webkit-animation-duration: 400s;
  111. z-index:-1;
  112. width:450px;
  113. border-top: 1px solid #fff;
  114. -webkit-box-shadow: 0px 3px 5px #cbcbcb;
  115. -moz-box-shadow: 0px 3px 5px #cbcbcb;
  116. box-shadow: 0px 3px 5px #cbcbcb;
  117. -webkit-border-radius: 4px;
  118. -moz-border-radius: 4px;
  119. border-radius: 4px;
  120. }
  121. .bottom {
  122. margin-top: 32px;
  123. }
  124. .bottom p {
  125. margin: 0;
  126. }
  127. .bottom a {
  128. color: #666;
  129. }
  130. .left-bottom {
  131. float: left;
  132. display: block;
  133. text-align: left;
  134. margin: 0px 0 0 50px;
  135. }
  136. .left-bottom p {
  137. font-size: 9px;
  138. }
  139. .right-bottom {
  140. margin: 0px 50px 0 0;
  141. text-align: right;
  142. font-size: 9px;
  143. }
  144. .right-bottom p {
  145. font-size: 9px;
  146. }
  147. .contact {
  148. font-size: 12px;
  149. }
  150. @-webkit-keyframes Rotation {
  151. from {-webkit-transform: rotate(0deg);}
  152. to {-webkit-transform: rotate(360deg);}
  153. }
  154. @media (max-width: 480px) {
  155. .card #content {
  156. -webkit-animation-name: none;
  157. width:550px;
  158. }
  159. h2 {
  160. font-size: 21px;
  161. }
  162. h3 {
  163. font-size: 19px;
  164. }
  165. h4 {
  166. font-size: 17px;
  167. }
  168. .header {
  169. margin: 0 0 55px 0;
  170. }
  171. #content img {
  172. margin: -5px 0 -40px 80px;
  173. }
  174. .bottom {
  175. margin-top: 50px;
  176. }
  177. .bottom p {
  178. font-size: 9px;
  179. }
  180. }