Dejvino's Curriculum Vitae
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

94 lines
2.5 KiB

  1. // Override Bootstrap's Sass default variables
  2. //
  3. // Nearly all variables in Bootstrap are written with the `!default` flag.
  4. // This allows you to override the default values of those variables before
  5. // you import Bootstrap's source Sass files.
  6. //
  7. // Overriding the default variable values is the best way to customize your
  8. // CSS without writing _new_ styles. For example, change you can either change
  9. // `$body-color` or write more CSS that override's Bootstrap's CSS like so:
  10. // `body { color: red; }`.
  11. //
  12. // Bring in Bootstrap
  13. //
  14. // Option 1
  15. //
  16. // Import all of Bootstrap's CSS
  17. // @import "bootstrap/scss/bootstrap";
  18. // Option 2
  19. //
  20. // Place variable overrides first, then import just the styles you need. Note that some stylesheets are required no matter what.
  21. // Toggle global options
  22. $enable-gradients: true;
  23. $enable-shadows: true;
  24. $offcanvas-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  25. // Customize some defaults
  26. $body-color: #333;
  27. $body-bg: #fff;
  28. $border-radius: .4rem;
  29. $success: #7952b3;
  30. // Required
  31. @import "bootstrap/scss/functions";
  32. @import "bootstrap/scss/variables";
  33. @import "bootstrap/scss/maps";
  34. @import "bootstrap/scss/mixins";
  35. @import "bootstrap/scss/utilities";
  36. @import "bootstrap/scss/root";
  37. @import "bootstrap/scss/reboot";
  38. @import "bootstrap/scss/type";
  39. // @import "bootstrap/scss/images";
  40. @import "bootstrap/scss/containers";
  41. @import "bootstrap/scss/grid";
  42. // @import "bootstrap/scss/tables";
  43. // @import "bootstrap/scss/forms";
  44. @import "bootstrap/scss/buttons";
  45. @import "bootstrap/scss/transitions";
  46. @import "bootstrap/scss/dropdown";
  47. // @import "bootstrap/scss/button-group";
  48. // @import "bootstrap/scss/nav";
  49. // @import "bootstrap/scss/navbar"; // Requires nav
  50. // @import "bootstrap/scss/card";
  51. // @import "bootstrap/scss/breadcrumb";
  52. // @import "bootstrap/scss/accordion";
  53. // @import "bootstrap/scss/pagination";
  54. // @import "bootstrap/scss/badge";
  55. // @import "bootstrap/scss/alert";
  56. // @import "bootstrap/scss/progress";
  57. // @import "bootstrap/scss/list-group";
  58. @import "bootstrap/scss/close";
  59. // @import "bootstrap/scss/toasts";
  60. @import "bootstrap/scss/modal"; // Requires transitions
  61. // @import "bootstrap/scss/tooltip";
  62. @import "bootstrap/scss/popover";
  63. // @import "bootstrap/scss/carousel";
  64. // @import "bootstrap/scss/spinners";
  65. @import "bootstrap/scss/offcanvas"; // Requires transitions
  66. // @import "bootstrap/scss/placeholders";
  67. // Helpers
  68. // @import "bootstrap/scss/helpers";
  69. // Utilities
  70. @import "bootstrap/scss/utilities/api";
  71. //
  72. // Custom styles
  73. //
  74. @import "icon-list";
  75. body {
  76. padding: 1.5rem;
  77. }