front-page.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. html, body, div, span, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. address,
  4. del, em, img,
  5. small, strong, sub, sup,
  6. ol, ul, li,
  7. form, label,
  8. table,
  9. article, aside, canvas,
  10. footer, header, hgroup, menu, nav, section,
  11. time, audio, video {
  12. margin:0;
  13. padding:0;
  14. border:0;
  15. outline:0;
  16. font-size:100%;
  17. vertical-align:baseline;
  18. background:transparent;
  19. }
  20. body {
  21. padding: 0;
  22. margin: 0;
  23. background: rgba(242, 242, 242, 0.7);
  24. color: #666;
  25. font-size: 12px;
  26. line-height: 18px;
  27. }
  28. h1, h2, h3, h4, h5, h6 {
  29. clear: both;
  30. font-weight: normal;
  31. }
  32. p {
  33. font-size: 14px;
  34. margin-bottom: 8px;
  35. }
  36. h2 {
  37. font-size: 16px;
  38. }
  39. h3 {
  40. font-size: 14px;
  41. }
  42. h4 {
  43. font-size: 13px;
  44. margin-bottom: 15px;
  45. }
  46. a:link {
  47. color: #000;
  48. text-decoration: none;
  49. }
  50. a:visited {
  51. color: #000;
  52. text-decoration: none;
  53. }
  54. a:active,
  55. a:hover {
  56. color: #757576;
  57. text-decoration: none;
  58. }
  59. a:active, a:focus, input {
  60. outline: 0;
  61. outline-style:none;
  62. outline-width:0;
  63. }
  64. .screen-reader-text {
  65. position: absolute;
  66. left: -9000px;
  67. }
  68. .header {
  69. margin: 0 0 50px 0;
  70. }
  71. .container {
  72. margin: 0 auto;
  73. text-align: center;
  74. }
  75. .card .content {
  76. margin: 100px auto;
  77. width:450px;
  78. background: #fff;
  79. padding: 70px 20px 40px;
  80. -webkit-animation-name: none;
  81. -webkit-animation-iteration-count: infinite;
  82. -webkit-animation-timing-function: linear;
  83. -webkit-animation-duration: 400s;
  84. border-top: 1px solid #fff;
  85. box-shadow: 0px 3px 5px #cbcbcb;
  86. border-radius: 4px;
  87. }
  88. #icon {
  89. display: block;
  90. box-sizing: border-box;
  91. margin:0 0 -34px 50px;
  92. padding: 0;
  93. width:50px;
  94. height:50px;
  95. background: #FFF;
  96. }
  97. .card .search {
  98. margin: 10px;
  99. }
  100. .card-bottom {
  101. margin-top: 20px;
  102. }
  103. .contact-info {
  104. font-size: 12px;
  105. }
  106. @media (max-width: 480px) {
  107. .card .content {
  108. margin: 50px auto;
  109. -webkit-animation-name: none;
  110. width:85%;
  111. }
  112. .header {
  113. margin: 0 0 55px 0;
  114. }
  115. #icon {
  116. display: inline;
  117. box-sizing: border-box;
  118. margin:0 0 0px 0px;
  119. padding: 0;
  120. width:50px;
  121. height:50px;
  122. background: #FFF;
  123. }
  124. }