indstyle.css 3.0 KB

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