12345678910111213141516171819202122232425 |
- // Import a Google Font
- @import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
- // Set your brand colors
- $purple: #8A4D76;
- $pink: #FA7C91;
- $brown: #757763;
- $beige-light: #D0D1CD;
- $beige-lighter: #EFF0EB;
- // Update Bulma's global variables
- $family-sans-serif: "Nunito", serif;
- $grey-dark: $brown;
- $grey-light: $beige-light;
- $primary: $purple;
- $link: $pink;
- // Update some of Bulma's component variables
- $control-border-width: 2px;
- $input-background-color: $beige-lighter;
- $input-border-color: transparent;
- $input-shadow: none;
- // Import the rest of Bulma
- @import "../bulma";
|