_core.scss 729 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. @include breakpoint(mobile-only) {
  24. padding: 0.5rem 1rem;
  25. }
  26. }
  27. .badge {
  28. display: inline-block;
  29. font-size: 0.8rem;
  30. font-weight: 500;
  31. border-radius: 10px;
  32. padding: 0px 6px;
  33. min-width: 20px;
  34. line-height: 20px;
  35. text-align: center;
  36. }
  37. .empty-state {
  38. margin: 0 auto;
  39. text-align: center;
  40. padding-top: 100px;
  41. }