card-mob.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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(images/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: 17px;
  75. margin-bottom: 10px;
  76. }
  77. h3 {
  78. font-size: 19px;
  79. margin-bottom: 0px;
  80. }
  81. h2 {
  82. font-size: 21px;
  83. }
  84. p.noindent {
  85. margin-bottom: 10px;
  86. text-indent : 0px;
  87. }
  88. a:link {
  89. color: #000;
  90. text-decoration: none;
  91. }
  92. a:visited {
  93. color: #000;
  94. text-decoration: none;
  95. }
  96. a:active,
  97. a:hover {
  98. color: #757576;
  99. text-decoration: none;
  100. }
  101. /* Text meant only for screen readers */
  102. .screen-reader-text {
  103. position: absolute;
  104. left: -9000px;
  105. }
  106. /* =Layout
  107. -------------------------------------------------------------- */
  108. body {
  109. padding: 0;
  110. margin: 0;
  111. }
  112. .header {
  113. margin: 0 0 55px 0;
  114. }
  115. #container {
  116. margin: 0 auto;
  117. text-align: center;
  118. }
  119. #content {
  120. margin: 150px auto;
  121. width:500px;
  122. background: #fff;
  123. padding: 20px;
  124. border: 1px solid #dadada;
  125. }
  126. #content img {
  127. float: left;
  128. margin: -5px 0 -40px 80px;
  129. }
  130. .card #content {
  131. margin: 150px auto;
  132. // -webkit-animation-name: Rotation;
  133. -webkit-animation-iteration-count: infinite;
  134. -webkit-animation-timing-function: linear;
  135. -webkit-animation-duration: 400s;
  136. z-index:-1;
  137. width:550px;
  138. border-top: 1px solid #fff;
  139. -webkit-box-shadow: 0px 3px 5px #cbcbcb;
  140. -moz-box-shadow: 0px 3px 5px #cbcbcb;
  141. box-shadow: 0px 3px 5px #cbcbcb;
  142. -webkit-border-radius: 4px;
  143. -moz-border-radius: 4px;
  144. border-radius: 4px;
  145. }
  146. .bottom {
  147. margin-top: 50px;
  148. }
  149. .bottom p {
  150. margin: 0;
  151. font-size: 9px;
  152. }
  153. .left-bottom {
  154. float: left;
  155. display: block;
  156. text-align: left;
  157. margin: 0px 0 0 50px;
  158. }
  159. .left-bottom p {
  160. font-size: 9px;
  161. }
  162. .right-bottom {
  163. margin: 0px 50px 0 0;
  164. text-align: right;
  165. font-size: 9px;
  166. }
  167. .right-bottom p {
  168. font-size: 9px;
  169. }
  170. .contact {
  171. font-size: 12px;
  172. }
  173. @-webkit-keyframes Rotation {
  174. from {
  175. -webkit-transform: rotate(0deg);
  176. }
  177. to {
  178. -webkit-transform: rotate(360deg);
  179. }
  180. }