customized.html 593 B

12345678910111213141516171819202122232425
  1. // Import a Google Font
  2. @import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
  3. // Set your brand colors
  4. $purple: #8A4D76;
  5. $pink: #FA7C91;
  6. $brown: #757763;
  7. $beige-light: #D0D1CD;
  8. $beige-lighter: #EFF0EB;
  9. // Update Bulma's global variables
  10. $family-sans-serif: "Nunito", serif;
  11. $grey-dark: $brown;
  12. $grey-light: $beige-light;
  13. $primary: $purple;
  14. $link: $pink;
  15. // Update some of Bulma's component variables
  16. $control-border-width: 2px;
  17. $input-background-color: $beige-lighter;
  18. $input-border-color: transparent;
  19. $input-shadow: none;
  20. // Import the rest of Bulma
  21. @import "../bulma";