style.css 2.1 KB

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