website.scss 10 KB

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