style.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* Reset */
  2. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,dfn,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
  3. @import url(https://fonts.googleapis.com/css?family=Open+Sans);
  4. html,body{
  5. margin:0;
  6. padding:0;
  7. font-family: 'Open Sans', sans-serif;
  8. background: #fff url(../images/bg.jpg) center top no-repeat;
  9. background-size: cover;
  10. height: 100%;
  11. width: 100%;
  12. }
  13. #wrapper{
  14. max-width: 100%;
  15. width: 940px;
  16. margin: 0 auto;
  17. }
  18. .main{
  19. max-width: 100%;
  20. width: 940px;
  21. float: left;
  22. }
  23. .header, .content, .bottom, .sep2{
  24. width: 100%;
  25. float: left;
  26. }
  27. .header{
  28. margin-top: 160px;
  29. margin-bottom: 40px;
  30. }
  31. h1{
  32. font-family: 'Open Sans', sans-serif;
  33. color: #fff;
  34. text-align: center;
  35. font-size: 50px;
  36. font-weight: 300;
  37. margin: 0 0 10px 0;
  38. }
  39. h1 strong{
  40. font-size: 38px;
  41. font-weight: 700;
  42. }
  43. h2{
  44. text-align: center;
  45. font-weight: 300;
  46. font-size: 20px;
  47. color: #ffffff;
  48. }
  49. h2 strong{
  50. font-weight: 700;
  51. font-style: italic;
  52. }
  53. .information{
  54. width: 480px;
  55. padding-top: 35px;
  56. margin: 0 auto;
  57. }
  58. h3{
  59. font-size: 28px;
  60. font-weight: 600;
  61. color: #ffffff;
  62. }
  63. .information p{
  64. font-size: 16px;
  65. color: #ffffff;
  66. display: block;
  67. }
  68. .form{
  69. float: left;
  70. width: 478px;
  71. margin-top: 20px;
  72. }
  73. .field{
  74. background: url(../images/field.png) repeat;
  75. width: 448px;
  76. -webkit-border-radius: 30px;-moz-border-radius: 30px;border-radius: 30px;
  77. border: none;
  78. font-style: italic;
  79. font-family: 'Lato', sans-serif;
  80. font-size: 16px;
  81. color: #ffffff;
  82. float: left;
  83. padding: 15px;
  84. margin-bottom: 15px;
  85. }
  86. @media only screen and (max-device-width: 420px) {
  87. .information{
  88. width: 100%;
  89. }
  90. .form{
  91. width: 100%;
  92. }
  93. .field {
  94. width: 90%;
  95. padding-left: 5%;
  96. padding-right: 5%;
  97. }
  98. }
  99. .submit{
  100. padding: 3px 10px;
  101. -webkit-border-radius: 30px;-moz-border-radius: 30px;border-radius: 30px;
  102. margin-left: -78px;
  103. margin-top: 12px;
  104. background: #ffffff;
  105. border: none;
  106. float: left;
  107. font-family: 'Lato', sans-serif;
  108. font-size: 14px;
  109. font-weight: bold;
  110. cursor: pointer;
  111. }
  112. .submit:hover{
  113. background: #eeeeee;
  114. }
  115. .error {
  116. color: #FE7070;
  117. font-weight: 700;
  118. font-size: 25px;
  119. }
  120. a {
  121. color: #92BCF2;
  122. font-weight: 700;
  123. }
  124. a:visited,
  125. a:hover {
  126. color: #7EB6FF;
  127. }