website.scss 8.6 KB

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