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