website.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. html {
  2. width: 100%;
  3. height: 100%; }
  4. body {
  5. width: 100%;
  6. height: 100%;
  7. font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  8. color: #ffffff;
  9. background-color: #211018; }
  10. h1, h2, h3, h4, h5, h6 {
  11. margin: 0 0 35px;
  12. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  13. font-weight: normal;
  14. letter-spacing: 1px; }
  15. p {
  16. margin: 0 0 25px;
  17. font-size: 18px;
  18. line-height: 1.5; }
  19. @media (min-width: 767px) {
  20. p {
  21. margin: 0 0 35px;
  22. font-size: 20px;
  23. line-height: 1.6; } }
  24. a {
  25. color: #82B397;
  26. -webkit-transition: all 0.2s ease-in-out;
  27. -moz-transition: all 0.2s ease-in-out;
  28. transition: all 0.2s ease-in-out; }
  29. a:hover, a:focus {
  30. text-decoration: none;
  31. color: #00aaff; }
  32. .light {
  33. font-weight: 400; }
  34. .navbar {
  35. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  36. margin-bottom: 0;
  37. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  38. text-transform: uppercase;
  39. background-color: #211018; }
  40. .navbar-brand {
  41. font-weight: 700; }
  42. .navbar-brand:focus {
  43. outline: none; }
  44. .navbar-custom a {
  45. color: #ffffff; }
  46. .navbar-custom .nav li a {
  47. -webkit-transition: background 0.3s ease-in-out;
  48. -moz-transition: background 0.3s ease-in-out;
  49. transition: background 0.3s ease-in-out; }
  50. .navbar-custom .nav li a:hover,
  51. .navbar-custom .nav li a:focus,
  52. .navbar-custom .nav li.active {
  53. outline: none;
  54. background-color: rgba(255, 255, 255, 0.2); }
  55. .navbar-toggle {
  56. padding: 4px 6px;
  57. font-size: 16px;
  58. color: #ffffff; }
  59. .navbar-toggle:focus,
  60. .navbar-toggle:active {
  61. outline: none; }
  62. @media (min-width: 767px) {
  63. .navbar {
  64. padding: 20px 0;
  65. border-bottom: none;
  66. letter-spacing: 1px;
  67. background: transparent;
  68. -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  69. -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  70. transition: background 0.5s ease-in-out, padding 0.5s ease-in-out; }
  71. .top-nav-collapse {
  72. padding: 0;
  73. background-color: #211018; }
  74. .navbar-custom.top-nav-collapse {
  75. border-bottom: 1px solid rgba(255, 255, 255, 0.3); } }
  76. @media (max-width: 480px) {
  77. .navbar {
  78. display: none; } }
  79. .features-section,
  80. .outro,
  81. .intro {
  82. width: 100%;
  83. padding: 100px 0;
  84. text-align: center;
  85. color: #fff; }
  86. .intro {
  87. background: url(images/header.jpg) no-repeat bottom center scroll;
  88. background-color: #211018;
  89. -webkit-background-size: cover;
  90. -moz-background-size: cover;
  91. background-size: cover;
  92. -o-background-size: cover; }
  93. .features-section {
  94. background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #85505f, #384955, #655361); }
  95. .features-section a {
  96. color: #82B397; }
  97. .outro {
  98. background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #384955, #655361, #85505f); }
  99. section h2 {
  100. color: #E7A151; }
  101. section h3 {
  102. color: #89B7CD; }
  103. section h4 {
  104. color: #5CBC86;
  105. font-size: 1.5em; }
  106. .brand-heading {
  107. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  108. font-weight: normal;
  109. font-size: 2em;
  110. text-align: center;
  111. margin-top: 2.5em; }
  112. .brand-heading .icon-conversejs {
  113. font-size: 60%; }
  114. .brand-heading-embedded {
  115. margin-top: 1.5em; }
  116. .intro-text {
  117. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  118. font-size: 18px; }
  119. @media (min-width: 767px) {
  120. .intro {
  121. height: 100%;
  122. padding: 0; }
  123. .brand-heading {
  124. font-size: 80px; }
  125. .intro-text {
  126. font-size: 25px; } }
  127. .btn-circle {
  128. width: 70px;
  129. height: 70px;
  130. margin-top: 15px;
  131. padding: 7px 16px;
  132. border: 2px solid #ffffff;
  133. border-radius: 35px;
  134. font-size: 40px;
  135. color: #ffffff;
  136. background: transparent;
  137. -webkit-transition: background 0.3s ease-in-out;
  138. -moz-transition: background 0.3s ease-in-out;
  139. transition: background 0.3s ease-in-out; }
  140. .btn-circle:hover,
  141. .btn-circle:focus {
  142. outline: none;
  143. color: #ffffff;
  144. background: rgba(255, 255, 255, 0.1); }
  145. .page-scroll .btn-circle i.animated {
  146. -webkit-transition-property: -webkit-transform;
  147. -webkit-transition-duration: 1s;
  148. -moz-transition-property: -moz-transform;
  149. -moz-transition-duration: 1s; }
  150. .page-scroll .btn-circle:hover i.animated {
  151. -webkit-animation-name: pulse;
  152. -moz-animation-name: pulse;
  153. -webkit-animation-duration: 1.5s;
  154. -moz-animation-duration: 1.5s;
  155. -webkit-animation-iteration-count: infinite;
  156. -moz-animation-iteration-count: infinite;
  157. -webkit-animation-timing-function: linear;
  158. -moz-animation-timing-function: linear; }
  159. .content-section {
  160. padding-top: 100px;
  161. padding-top: 100px;
  162. min-height: 100vh; }
  163. .content-section .privacy-policy {
  164. padding-top: 2em; }
  165. .content-section .privacy-policy h4 {
  166. padding-top: 1.5em; }
  167. .content-section .privacy-policy p {
  168. font-size: 1.2em;
  169. padding-bottom: 0;
  170. margin-bottom: 1em; }
  171. .donate-section {
  172. width: 100%;
  173. padding: 50px 0;
  174. color: #ffffff;
  175. background-color: #211018; }
  176. .donate-section p.bitcoin-header {
  177. margin: 0 0 5px; }
  178. @media (min-width: 767px) {
  179. .content-section {
  180. padding-bottom: 50px; }
  181. .donate-section {
  182. padding: 100px 0; } }
  183. .btn {
  184. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  185. font-weight: 400;
  186. -webkit-transition: all 0.3s ease-in-out;
  187. -moz-transition: all 0.3s ease-in-out;
  188. transition: all 0.3s ease-in-out; }
  189. .btn-default {
  190. border: 1px solid #82B397;
  191. color: #82B397;
  192. background-color: transparent; }
  193. .btn-default:hover,
  194. .btn-default:focus {
  195. border: 1px solid #82B397;
  196. outline: none;
  197. color: #211018;
  198. background-color: #82B397; }
  199. .btn-huge {
  200. padding: 25px;
  201. font-size: 26px; }
  202. .banner-social-buttons {
  203. padding-top: 3em; }
  204. ::-moz-selection {
  205. text-shadow: none;
  206. background: #fcfcfc;
  207. background: rgba(255, 255, 255, 0.2); }
  208. ::selection {
  209. text-shadow: none;
  210. background: #fcfcfc;
  211. background: rgba(255, 255, 255, 0.2); }
  212. img::selection {
  213. background: transparent; }
  214. img::-moz-selection {
  215. background: transparent; }
  216. body {
  217. webkit-tap-highlight-color: rgba(255, 255, 255, 0.2); }
  218. ul.contact,
  219. ul.integration,
  220. ul.screencasts,
  221. ul.features {
  222. text-align: left;
  223. font-size: 19px; }
  224. .feature-icon {
  225. display: inline-block;
  226. position: relative;
  227. padding-bottom: 5em;
  228. margin-bottom: 2.75em;
  229. cursor: default;
  230. color: #fff; }
  231. .feature-icon .fa {
  232. display: inline-block;
  233. width: 2em;
  234. height: 2em;
  235. font-size: 4em;
  236. border-radius: 100%;
  237. box-shadow: inset 0 0 0 1px white;
  238. color: white;
  239. line-height: 2.1em; }
  240. .feature-icon:before {
  241. content: '';
  242. background: white;
  243. position: absolute;
  244. bottom: 0;
  245. left: 50%;
  246. margin-left: -0.325em;
  247. width: 0.65em;
  248. height: 0.65em;
  249. display: block;
  250. border-radius: 100%; }
  251. .feature-icon:after {
  252. content: '';
  253. position: absolute;
  254. left: 50%;
  255. bottom: 0.65em;
  256. width: 1px;
  257. height: 4.35em;
  258. background: white;
  259. margin-left: -0.5px; }
  260. .row {
  261. margin-left: 0;
  262. margin-right: 0; }
  263. .mastodon {
  264. width: 4em;
  265. height: 4em;
  266. margin-top: 0.9em; }
  267. .sponsors {
  268. clear: both;
  269. font-size: 1.4em;
  270. padding: 2em 0 6em 0; }
  271. .sponsors ul {
  272. padding: 0; }
  273. .sponsors h2 {
  274. text-align: center; }
  275. .sponsors ul {
  276. margin: 0 0 1em 0; }
  277. .sponsors ul li {
  278. margin: 1em 0;
  279. list-style: none; }
  280. .sponsors-text {
  281. text-align: left;
  282. padding: 0 0 2em 0; }
  283. /*# sourceMappingURL=website.css.map */