_core.scss 961 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. }