home.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. @CHARSET "UTF-8";
  2. html,body {
  3. padding: 0px;
  4. margin: 0px;
  5. }
  6. .content {
  7. background: #eef4f5;
  8. color: #505759;
  9. padding: 0;
  10. margin: 0;
  11. font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
  12. font-weight: normal;
  13. font-style: normal;
  14. line-height: 1;
  15. position: relative;
  16. cursor: default;
  17. }
  18. .top-bar {
  19. position: relative;
  20. background: #242C2E;
  21. border-bottom: 1px dotted #4f5556;
  22. height: 100px;
  23. background: #242C2E;
  24. }
  25. .top-bar img {
  26. float: left;
  27. margin-top: 1.5em;
  28. margin-bottom: 1em;
  29. margin-left: 50px;
  30. }
  31. .top-bar a:hover {
  32. cursor: pointer;
  33. }
  34. .right-nav {
  35. float: right;
  36. width: 320px;
  37. height: 25px;
  38. margin-right: 50px;
  39. padding-top: 2.5em;
  40. }
  41. .right-nav ul {
  42. padding: 0px;
  43. margin: 0px;
  44. }
  45. .right-nav ul li {
  46. display: inline;
  47. list-style: none;
  48. margin-right: 20px;
  49. }
  50. .right-nav li a {
  51. color: #a9c7cf;
  52. font-size: 16px;
  53. font-weight: 400;
  54. text-decoration: none;
  55. font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
  56. font-size: 16px;
  57. }
  58. .landing {
  59. width: 100%;
  60. background: #eef4f5 url(./assets/background.jpg) bottom left no-repeat;
  61. background-size: cover;
  62. padding-top: 50px;
  63. padding-bottom: 50px;
  64. overflow: hidden;
  65. }
  66. .hook {
  67. margin-left: auto;
  68. margin-right: auto;
  69. overflow: hidden;
  70. padding-left: 8%;
  71. padding-right: 8%;
  72. }
  73. .hook-image {
  74. float: left;
  75. margin-right: 20px;
  76. }
  77. .hook-text {
  78. padding: 10px;
  79. float: left;
  80. padding-bottom: 3em;
  81. }
  82. .hook-text h1 {
  83. color: #FFFFFF;
  84. text-shadow: 2px 2px #909090;
  85. font-weight: 100;
  86. font-size: 2.8em;
  87. line-height: 1.2em;
  88. font-family: "Dosis", "Open Sans" "Helvetica", Helvetica, Arial, sans-serif;
  89. }
  90. .hook-text h2 {
  91. color: #000000;
  92. font-family: "Open Sans", sans-serif;
  93. font-weight: 100;
  94. font-size: 1.2em;
  95. }
  96. .hook-text h3 {
  97. color: #303030;
  98. text-shadow: 1px 1px #909090;
  99. font-size: 1.4em;
  100. font-weight: 200;
  101. margin-bottom: 50px;
  102. }
  103. .button {
  104. cursor: pointer;
  105. font-family: "Dosis", "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
  106. text-decoration: none;
  107. padding: 1em 2em 1em 2em;
  108. font-size: 1.5em;
  109. background-color: #5DB055;
  110. color: white;
  111. -webkit-transition: background-color 300ms ease-out;
  112. -moz-transition: background-color 300ms ease-out;
  113. transition: background-color 300ms ease-out;
  114. border: none;
  115. border-radius: 3px;
  116. margin: 50px;
  117. }
  118. .button:hover,.button:focus {
  119. background-color: #3B9033;
  120. }
  121. .bottom-bar {
  122. width: 100%;
  123. background: #eef4f5;
  124. font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
  125. height: 350px;
  126. bottom: 0px;
  127. background: #eef4f5 url(./assets/bg_footer.png);
  128. overflow: hidden;
  129. }
  130. .footer-content {
  131. background: #eef4f5;
  132. margin-top: 2em;
  133. padding-top: 1em;
  134. border-top: 1px solid #D2DADB;
  135. width: 70%;
  136. margin-left: 15%;
  137. }
  138. .bottom-bar ul {
  139. padding-left: 0px;
  140. padding-top: 10px;
  141. margin: 0px;
  142. }
  143. .bottom-bar ul li {
  144. display: inline;
  145. padding: 10px;
  146. }
  147. .bottom-bar a {
  148. text-decoration: none;
  149. color: #C3C8C9;
  150. }
  151. .bottom-bar ul.major-link a {
  152. color: #929596;
  153. font-weight: 700;
  154. }
  155. .left-footer {
  156. float: left;
  157. }
  158. .right-footer {
  159. margin-top: 10px;
  160. float: right;
  161. }
  162. .copy {
  163. color: #929596;
  164. font-size: 0.8em;
  165. font-weight: 700;
  166. }