_core.scss 753 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. html, body {
  2. height: 100%;
  3. }
  4. body {
  5. -webkit-font-smoothing: antialiased;
  6. -moz-osx-font-smoothing: grayscale;
  7. overflow: hidden;
  8. }
  9. b, strong {
  10. font-weight: $font-weight-bold
  11. }
  12. .bigger {
  13. font-size: 1.2rem;
  14. }
  15. .button-bar {
  16. text-align: right;
  17. float: right;
  18. z-index: 0;
  19. }
  20. .alert {
  21. font-size: 1rem;
  22. padding: 0.5rem $padding-default;
  23. position: relative;
  24. @include breakpoint(mobile-only) {
  25. padding: 0.5rem 1rem;
  26. }
  27. }
  28. .badge {
  29. display: inline-block;
  30. font-size: 0.8rem;
  31. font-weight: 500;
  32. border-radius: 10px;
  33. padding: 0px 6px;
  34. min-width: 20px;
  35. line-height: 20px;
  36. text-align: center;
  37. }
  38. .empty-state {
  39. margin: 0 auto;
  40. text-align: center;
  41. padding-top: 100px;
  42. }