_global.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // Global styling for this template
  2. body {
  3. @include body-font;
  4. padding-top: 54px;
  5. color: $gray-600;
  6. }
  7. @media (min-width: 992px) {
  8. body {
  9. padding-top: 0;
  10. padding-left: $sidebar-base-width;
  11. }
  12. }
  13. h1,
  14. h2,
  15. h3,
  16. h4,
  17. h5,
  18. h6 {
  19. @include heading-font;
  20. font-weight: 700;
  21. text-transform: uppercase;
  22. color: $gray-800;
  23. }
  24. h1 {
  25. font-size: 6rem;
  26. line-height: 5.5rem;
  27. }
  28. h2 {
  29. font-size: 3.5rem;
  30. }
  31. h3 {
  32. font-size: 2rem;
  33. }
  34. p.lead {
  35. font-size: 1.15rem;
  36. font-weight: 400;
  37. }
  38. .subheading {
  39. text-transform: uppercase;
  40. font-weight: 500;
  41. @include heading-font;
  42. font-size: 1.5rem;
  43. }
  44. .social-icons {
  45. a {
  46. display: inline-block;
  47. height: 3.5rem;
  48. width: 3.5rem;
  49. background-color: $gray-700;
  50. color: $white !important;
  51. border-radius: 100%;
  52. text-align: center;
  53. font-size: 1.5rem;
  54. line-height: 3.5rem;
  55. margin-right: 1rem;
  56. &:last-child {
  57. margin-right: 0;
  58. }
  59. &:hover {
  60. background-color: $primary;
  61. }
  62. }
  63. }
  64. .dev-icons {
  65. font-size: 3rem;
  66. .list-inline-item i {
  67. &:hover {
  68. color: $primary;
  69. }
  70. }
  71. }