Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. $spacer: 1rem;
  2. $enable-rounded: false;
  3.  
  4. // Grid
  5.  
  6. $grid-breakpoints: (
  7. xs: 0,
  8. sm: 576px,
  9. md: 768px,
  10. lg: 992px,
  11. xl: 1200px,
  12. xxl: 1920px
  13. );
  14.  
  15. $container-max-widths: (
  16. sm: 540px,
  17. md: 720px,
  18. lg: 960px,
  19. xl: 1140px,
  20. xxl: 1596px
  21. );
  22.  
  23. $grid-gutter-width: $spacer * 2;
  24.  
  25.  
  26. // Colours
  27.  
  28. $blue: #0085e9;
  29. $facebook: #3b5998;
  30. $twitter: #1da1f2;
  31. $youtube: #f00;
  32. $reddit: #ff4500;
  33. $dark: #303030;
  34.  
  35. $primary: $blue;
  36.  
  37. $theme-colors: (
  38. "facebook": $facebook,
  39. "twitter": $twitter,
  40. "youtube": $youtube,
  41. "reddit": $reddit
  42. );
  43.  
  44. $body-color: #4a4a4a;
  45.  
  46. // Typography
  47.  
  48. $rfs-base-font-size: 1rem;
  49. $font-size-base: 1rem;
  50. $h1-font-size: $rfs-base-font-size * 3.5;
  51. $h2-font-size: $rfs-base-font-size * 3;
  52. $h3-font-size: $rfs-base-font-size * 2.5;
  53. $h4-font-size: $rfs-base-font-size * 1.85;
  54. $h5-font-size: $rfs-base-font-size * 1.5;
  55. $h6-font-size: $rfs-base-font-size;
  56.  
  57. $font-family-sans-serif: "Roboto", sans-serif;
  58. $font-weight-bold: 700;
  59. $lead-font-size: $font-size-base * 1.25;
  60.  
  61. $headings-font-weight: $font-weight-bold;
  62. $headings-margin-bottom: $spacer * 1.5;
  63.  
  64. $font-path: "../fonts";
  65. $fa-font-path: $font-path;
  66.  
  67.  
  68. // Navbar
  69.  
  70. $nav-link-padding-y: $spacer;
  71. $navbar-nav-link-padding-x: $spacer;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement