_website.scss 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. @import "bootstrap/scss/functions";
  2. @import "bootstrap/scss/variables";
  3. @import "bootstrap/scss/mixins";
  4. @import "bootstrap/scss/root";
  5. @import "bootstrap/scss/reboot";
  6. @import "bootstrap/scss/type";
  7. @import "bootstrap/scss/images";
  8. @import "bootstrap/scss/grid";
  9. @import "bootstrap/scss/forms";
  10. @import "bootstrap/scss/buttons";
  11. @import "bootstrap/scss/transitions";
  12. @import "bootstrap/scss/dropdown";
  13. @import "bootstrap/scss/button-group";
  14. @import "bootstrap/scss/input-group";
  15. @import "bootstrap/scss/custom-forms";
  16. @import "bootstrap/scss/nav";
  17. @import "bootstrap/scss/navbar";
  18. @import "bootstrap/scss/badge";
  19. @import "bootstrap/scss/media";
  20. @import "bootstrap/scss/list-group";
  21. @import "bootstrap/scss/close";
  22. @import "bootstrap/scss/utilities";
  23. html {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. body {
  28. width: 100%;
  29. height: 100%;
  30. font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  31. color: #ffffff;
  32. background-color: #211018;
  33. }
  34. h1, h2, h3, h4, h5, h6 {
  35. margin: 0 0 35px;
  36. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  37. font-weight: normal;
  38. letter-spacing: 1px;
  39. }
  40. p {
  41. margin: 0 0 25px;
  42. font-size: 18px;
  43. line-height: 1.5;
  44. }
  45. @media (min-width: 767px) {
  46. p {
  47. margin: 0 0 35px;
  48. font-size: 20px;
  49. line-height: 1.6;
  50. }
  51. }
  52. a {
  53. color: #82B397;
  54. -webkit-transition: all 0.2s ease-in-out;
  55. -moz-transition: all 0.2s ease-in-out;
  56. transition: all 0.2s ease-in-out;
  57. }
  58. a:hover, a:focus {
  59. text-decoration: none;
  60. color: #00aaff;
  61. }
  62. .light {
  63. font-weight: 400;
  64. }
  65. .navbar {
  66. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  67. margin-bottom: 0;
  68. background: transparent;
  69. font-size: 95%;
  70. font-weight: normal;
  71. .navbar-collapse {
  72. justify-content: space-between;
  73. }
  74. a {
  75. color: white;
  76. }
  77. }
  78. .navbar-brand {
  79. &:focus {
  80. outline: none;
  81. }
  82. }
  83. .navbar-custom {
  84. a {
  85. color: #ffffff;
  86. }
  87. }
  88. .navbar-custom .nav li a {
  89. -webkit-transition: background 0.3s ease-in-out;
  90. -moz-transition: background 0.3s ease-in-out;
  91. transition: background 0.3s ease-in-out;
  92. }
  93. .navbar-custom .nav li a:hover,
  94. .navbar-custom .nav li a:focus,
  95. .navbar-custom .nav li.active {
  96. outline: none;
  97. background-color: rgba(255, 255, 255, 0.2);
  98. }
  99. .navbar-toggle {
  100. padding: 4px 6px;
  101. font-size: 16px;
  102. color: #ffffff;
  103. }
  104. .navbar-toggle:focus,
  105. .navbar-toggle:active {
  106. outline: none;
  107. }
  108. @media (min-width: 767px) {
  109. .navbar {
  110. border-bottom: none;
  111. letter-spacing: 1px;
  112. background: transparent;
  113. -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  114. -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  115. transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  116. }
  117. .top-nav-collapse {
  118. padding-top: 0;
  119. padding-bottom: 0;
  120. background-color: #211018;
  121. }
  122. .navbar-custom.top-nav-collapse {
  123. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  124. }
  125. }
  126. @media (max-width: 480px) {
  127. .navbar {
  128. display: none;
  129. }
  130. }
  131. .features-section,
  132. .outro,
  133. .intro {
  134. width: 100%;
  135. padding: 100px 0;
  136. text-align: center;
  137. color: #fff;
  138. }
  139. .intro {
  140. margin-top: -4em;
  141. height: calc(100vh + 4em);
  142. background: url(images/header.jpg) no-repeat bottom center scroll;
  143. background-color: #211018;
  144. -webkit-background-size: cover;
  145. -moz-background-size: cover;
  146. background-size: cover;
  147. -o-background-size: cover;
  148. }
  149. .features-section {
  150. 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);
  151. }
  152. .features-section a {
  153. color: #82B397;
  154. }
  155. .outro {
  156. 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);
  157. }
  158. section {
  159. h2 {
  160. color: #E7A151;
  161. }
  162. h3 {
  163. color: #89B7CD;
  164. }
  165. h4 {
  166. color: #5CBC86;
  167. font-size: 1.5em;
  168. }
  169. }
  170. .brand-heading {
  171. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  172. font-weight: normal;
  173. font-size: 2em;
  174. text-align: center;
  175. margin-top: 1.5em;
  176. }
  177. .brand-heading .icon-conversejs {
  178. font-size: 60%;
  179. }
  180. .brand-heading-embedded {
  181. margin-top: 1.5em;
  182. }
  183. .intro-text {
  184. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  185. font-size: 18px;
  186. }
  187. @media (min-width: 767px) {
  188. .intro {
  189. padding: 0;
  190. }
  191. .brand-heading {
  192. font-size: 80px;
  193. }
  194. .intro-text {
  195. font-size: 25px;
  196. }
  197. }
  198. .btn-circle {
  199. width: 70px;
  200. height: 70px;
  201. margin-top: 15px;
  202. padding: 7px 16px;
  203. border: 2px solid #ffffff;
  204. border-radius: 35px;
  205. font-size: 40px;
  206. color: #ffffff;
  207. background: transparent;
  208. -webkit-transition: background 0.3s ease-in-out;
  209. -moz-transition: background 0.3s ease-in-out;
  210. transition: background 0.3s ease-in-out;
  211. }
  212. .btn-circle:hover,
  213. .btn-circle:focus {
  214. outline: none;
  215. color: #ffffff;
  216. background: rgba(255, 255, 255, 0.1);
  217. }
  218. .page-scroll .btn-circle i.animated {
  219. -webkit-transition-property: -webkit-transform;
  220. -webkit-transition-duration: 1s;
  221. -moz-transition-property: -moz-transform;
  222. -moz-transition-duration: 1s;
  223. }
  224. .page-scroll .btn-circle:hover i.animated {
  225. -webkit-animation-name: pulse;
  226. -moz-animation-name: pulse;
  227. -webkit-animation-duration: 1.5s;
  228. -moz-animation-duration: 1.5s;
  229. -webkit-animation-iteration-count: infinite;
  230. -moz-animation-iteration-count: infinite;
  231. -webkit-animation-timing-function: linear;
  232. -moz-animation-timing-function: linear;
  233. }
  234. .nav-item {
  235. &.active {
  236. a {
  237. color: #E7A151 !important;
  238. }
  239. }
  240. }
  241. .content-section {
  242. padding-top: 100px;
  243. padding-top: 100px;
  244. min-height: 100vh;
  245. .privacy-policy {
  246. padding-top: 2em;
  247. h4 {
  248. padding-top: 1.5em;
  249. }
  250. p {
  251. font-size: 1.2em;
  252. padding-bottom: 0;
  253. margin-bottom: 1em;
  254. }
  255. }
  256. }
  257. .donate-section {
  258. width: 100%;
  259. padding: 50px 0;
  260. color: #ffffff;
  261. background-color: #211018;
  262. }
  263. .donate-section p.bitcoin-header {
  264. margin: 0 0 5px;
  265. }
  266. @media (min-width: 767px) {
  267. .content-section {
  268. padding-bottom: 50px;
  269. }
  270. .donate-section {
  271. padding: 100px 0;
  272. }
  273. }
  274. .btn {
  275. font-family: Futura,Helvetica,Trebuchet MS,Arial,sans-serif;
  276. font-weight: 400;
  277. -webkit-transition: all 0.3s ease-in-out;
  278. -moz-transition: all 0.3s ease-in-out;
  279. transition: all 0.3s ease-in-out;
  280. }
  281. .btn-default {
  282. border: 1px solid #82B397;
  283. color: #82B397;
  284. background-color: transparent;
  285. }
  286. .btn-default:hover,
  287. .btn-default:focus {
  288. border: 1px solid #82B397;
  289. outline: none;
  290. color: #211018;
  291. background-color: #82B397;
  292. }
  293. .btn-huge {
  294. padding: 25px;
  295. font-size: 26px;
  296. }
  297. .banner-social-buttons {
  298. padding-top: 3em;
  299. a {
  300. padding: 0.15em;
  301. i {
  302. font-size: 115%;
  303. }
  304. }
  305. }
  306. ::-moz-selection {
  307. text-shadow: none;
  308. background: #fcfcfc;
  309. background: rgba(255, 255, 255, 0.2);
  310. }
  311. ::selection {
  312. text-shadow: none;
  313. background: #fcfcfc;
  314. background: rgba(255, 255, 255, 0.2);
  315. }
  316. img::selection {
  317. background: transparent;
  318. }
  319. img::-moz-selection {
  320. background: transparent;
  321. }
  322. body {
  323. webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  324. }
  325. ul.contact,
  326. ul.integration,
  327. ul.screencasts,
  328. ul.features {
  329. text-align: left;
  330. font-size: 19px;
  331. }
  332. .feature-icon {
  333. display: inline-block;
  334. position: relative;
  335. padding-bottom: 5em;
  336. margin-bottom: 2.75em;
  337. cursor: default;
  338. color: #fff;
  339. }
  340. .feature-icon .fa {
  341. display: inline-block;
  342. width: 2em;
  343. height: 2em;
  344. font-size: 4em;
  345. border-radius: 100%;
  346. box-shadow: inset 0 0 0 1px white;
  347. color: white;
  348. line-height: 2.1em;
  349. }
  350. .feature-icon:before {
  351. content: '';
  352. background: white;
  353. position: absolute;
  354. bottom: 0;
  355. left: 50%;
  356. margin-left: -0.325em;
  357. width: 0.65em;
  358. height: 0.65em;
  359. display: block;
  360. border-radius: 100%;
  361. }
  362. .feature-icon:after {
  363. content: '';
  364. position: absolute;
  365. left: 50%;
  366. bottom: 0.65em;
  367. width: 1px;
  368. height: 4.35em;
  369. background: white;
  370. margin-left: -0.5px;
  371. }
  372. .row {
  373. margin-left: 0;
  374. margin-right: 0;
  375. }
  376. .mastodon {
  377. width: 3.6em;
  378. height: 3.6em;
  379. margin-top: 0.6em;
  380. }
  381. .sponsors {
  382. clear: both;
  383. font-size: 1.4em;
  384. padding: 2em 0 6em 0;
  385. ul {
  386. padding: 0;
  387. }
  388. }
  389. .sponsors h2 {
  390. text-align: center;
  391. }
  392. .sponsors ul {
  393. margin: 0 0 1em 0;
  394. }
  395. .sponsors ul li {
  396. margin: 1em 0;
  397. list-style: none;
  398. }
  399. .sponsors-text {
  400. text-align: left;
  401. padding: 0 0 2em 0;
  402. }