_core.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. body {
  2. font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. color: #ffffff;
  4. background-color: $global-background-color;
  5. .brand-heading {
  6. font-size: 600%;
  7. margin-left: -10%;
  8. &.fade-in {
  9. @include fade-in;
  10. @include animation-delay(2s);
  11. }
  12. .icon-conversejs {
  13. font-size: 88%;
  14. }
  15. }
  16. div.content {
  17. height: 100vh;
  18. width: 100vw;
  19. position: fixed;
  20. background-color: $global-background-color;
  21. .inner-content {
  22. text-align: center;
  23. padding: 7%;
  24. @include calc(padding-left, '5% + #{$controlbox-width}');
  25. p.no-chats {
  26. padding-right: 10%;
  27. font-size: 120%;
  28. }
  29. }
  30. }
  31. }
  32. #conversejs.fullscreen {
  33. .converse-chatboxes {
  34. width: 100vw;
  35. right: 15px; // Hack due to padding added by bootstrap
  36. }
  37. form {
  38. &.converse-form {
  39. margin: 1em;
  40. input[type=checkbox] {
  41. margin-left: 1em;
  42. display: inline;
  43. margin-bottom: 2em;
  44. }
  45. input[type=button],
  46. input[type=submit] {
  47. padding-left: 1em;
  48. padding-right: 1em;
  49. margin-right: 1em;
  50. }
  51. }
  52. }
  53. }