style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. html,body{
  4. margin:0;
  5. padding:0;
  6. font-family: 'Open Sans', sans-serif;
  7. background: #fff url(../images/bg.jpg) center top no-repeat;
  8. background-size: cover;
  9. height: 100%;
  10. width: 100%;
  11. }
  12. #wrapper{
  13. max-width: 100%;
  14. width: 940px;
  15. margin: 0 auto;
  16. }
  17. .main{
  18. max-width: 100%;
  19. width: 940px;
  20. float: left;
  21. }
  22. .header, .content, .bottom, .sep2{
  23. width: 100%;
  24. float: left;
  25. }
  26. .header{
  27. margin-top: 160px;
  28. margin-bottom: 40px;
  29. }
  30. h1{
  31. font-family: 'Open Sans', sans-serif;
  32. color: #fff;
  33. text-align: center;
  34. font-size: 50px;
  35. font-weight: 300;
  36. margin: 0 0 10px 0;
  37. }
  38. h1 strong{
  39. font-size: 38px;
  40. font-weight: 700;
  41. }
  42. h2{
  43. text-align: center;
  44. font-weight: 300;
  45. font-size: 20px;
  46. color: #ffffff;
  47. }
  48. h2 strong{
  49. font-weight: 700;
  50. font-style: italic;
  51. }
  52. .information{
  53. width: 480px;
  54. padding-top: 35px;
  55. margin: 0 auto;
  56. }
  57. h3{
  58. font-size: 28px;
  59. font-weight: 600;
  60. color: #ffffff;
  61. }
  62. .information p{
  63. font-size: 16px;
  64. color: #ffffff;
  65. display: block;
  66. }
  67. .form{
  68. position: relative;
  69. width: 478px;
  70. margin-top: 20px;
  71. }
  72. .field{
  73. background: url(../images/field.png) repeat;
  74. width: 448px;
  75. -webkit-border-radius: 30px;-moz-border-radius: 30px;border-radius: 30px;
  76. border: none;
  77. font-style: italic;
  78. font-family: 'Lato', sans-serif;
  79. font-size: 16px;
  80. color: #ffffff;
  81. padding: 15px;
  82. margin-bottom: 15px;
  83. outline: none;
  84. }
  85. .field:focus {
  86. border: 1px solid #ffffff;
  87. padding: 14px;
  88. }
  89. @media only screen and (max-width: 480px) {
  90. .information{
  91. width: 100%;
  92. }
  93. .form{
  94. width: 90%;
  95. margin-left: 5%;
  96. margin-right: 5%;
  97. }
  98. .field {
  99. width: 90%;
  100. }
  101. }
  102. .submit{
  103. position: absolute;
  104. right: 15px;
  105. top: 13px;
  106. padding: 3px 10px;
  107. -webkit-border-radius: 30px;-moz-border-radius: 30px;border-radius: 30px;
  108. background: #ffffff;
  109. border: none;
  110. font-family: 'Lato', sans-serif;
  111. font-size: 14px;
  112. font-weight: bold;
  113. cursor: pointer;
  114. }
  115. .submit:hover{
  116. background: #eeeeee;
  117. }
  118. .error {
  119. color: #FE7070;
  120. font-weight: 700;
  121. font-size: 25px;
  122. }
  123. a {
  124. color: #92BCF2;
  125. font-weight: 700;
  126. }
  127. a:visited,
  128. a:hover {
  129. color: #7EB6FF;
  130. }
  131. .g-recaptcha, .g-recaptcha > div {
  132. margin: auto;
  133. }