_core.scss 981 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. html, body {
  2. height: 100%; // use !important to override slidebars.min.css
  3. }
  4. body {
  5. background: $page-bg;
  6. color: $core-text;
  7. -webkit-font-smoothing: antialiased;
  8. -moz-osx-font-smoothing: grayscale;
  9. }
  10. a {
  11. color: $core-accent;
  12. &:hover {
  13. color: darken($core-accent, 20%);
  14. }
  15. }
  16. b, strong {
  17. font-weight: $font-weight-bold
  18. }
  19. // Global Container
  20. #container {
  21. min-height: 100%;
  22. position: relative;
  23. }
  24. // Fullwidth styles
  25. .fullwidth {
  26. #body {
  27. padding-left: 0;
  28. padding-right: 0;
  29. }
  30. #header, #breadcrumbs, .blog-header, .blog-content-item, .content-wrapper, ul.pagination, #body > .modular-row {
  31. @extend .padding-horiz;
  32. }
  33. }
  34. // Global body styling
  35. #body {
  36. @extend .default-animation;
  37. @extend .padding-horiz;
  38. background: $page-bg;
  39. padding-top: $header-height;
  40. // padding-top: $header-height + $padding-vert;
  41. // padding-bottom: $footer-height + $padding-vert + 2rem;
  42. padding-bottom: 0;
  43. }
  44. // Alignment
  45. .left {
  46. float: left;
  47. }
  48. .right {
  49. float: right;
  50. }