Compare commits
4 commits
a8f0d6889d
...
2db52db7a1
Author | SHA1 | Date | |
---|---|---|---|
2db52db7a1 | |||
7f6f09bc68 | |||
7ac916395a | |||
12a1bf138d |
4 changed files with 2852 additions and 1 deletions
|
@ -47,9 +47,17 @@ These can be updated at any time within the `package.json`.
|
||||||
|
|
||||||
### Run the following command from the theme directory
|
### Run the following command from the theme directory
|
||||||
|
|
||||||
|
#### Setup
|
||||||
|
|
||||||
`ddev npm install`
|
`ddev npm install`
|
||||||
|
|
||||||
### Alternat non-DDEV
|
#### Compile CSS
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ddev npm run sass-dev
|
||||||
|
```
|
||||||
|
|
||||||
|
### Alternate non-DDEV
|
||||||
|
|
||||||
Run the following command from the theme directory (that's the folder where this README is).
|
Run the following command from the theme directory (that's the folder where this README is).
|
||||||
|
|
||||||
|
|
2803
web/themes/custom/geofresco/dist/css/global.css
vendored
2803
web/themes/custom/geofresco/dist/css/global.css
vendored
File diff suppressed because it is too large
Load diff
37
web/themes/custom/geofresco/src/global/global-old.scss
Normal file
37
web/themes/custom/geofresco/src/global/global-old.scss
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
// Set your brand colors
|
||||||
|
$purple: #8a4d76;
|
||||||
|
$pink: #fa7c91;
|
||||||
|
$brown: #757763;
|
||||||
|
$beige-light: #d0d1cd;
|
||||||
|
$beige-lighter: #eff0eb;
|
||||||
|
|
||||||
|
// Override global Sass variables from the /utilities folder
|
||||||
|
@use "../../node_modules/bulma/sass/utilities" with (
|
||||||
|
$family-primary: '"Nunito", sans-serif',
|
||||||
|
$grey-dark: $brown,
|
||||||
|
$grey-light: $beige-light,
|
||||||
|
$primary: $purple,
|
||||||
|
$link: $pink,
|
||||||
|
$control-border-width: 2px
|
||||||
|
);
|
||||||
|
|
||||||
|
// Override Sass variables from the /form folder
|
||||||
|
@use "../../node_modules/bulma/sass/form" with (
|
||||||
|
$input-shadow: none
|
||||||
|
);
|
||||||
|
|
||||||
|
// Import the components you need
|
||||||
|
@forward "../../node_modules/bulma/sass/base";
|
||||||
|
@forward "../../node_modules/bulma/sass/components/card";
|
||||||
|
@forward "../../node_modules/bulma/sass/components/modal";
|
||||||
|
@forward "../../node_modules/bulma/sass/components/navbar";
|
||||||
|
@forward "../../node_modules/bulma/sass/elements/button";
|
||||||
|
@forward "../../node_modules/bulma/sass/elements/icon";
|
||||||
|
@forward "../../node_modules/bulma/sass/elements/content";
|
||||||
|
@forward "../../node_modules/bulma/sass/elements/notification";
|
||||||
|
@forward "../../node_modules/bulma/sass/elements/progress";
|
||||||
|
@forward "../../node_modules/bulma/sass/elements/tag";
|
||||||
|
@forward "../../node_modules/bulma/sass/layout/footer";
|
||||||
|
|
||||||
|
// Import the themes so that all CSS variables have a value
|
||||||
|
@forward "../../node_modules/bulma/sass/themes";
|
|
@ -19,6 +19,9 @@ $navbar-breakpoint: calc($mini/2);
|
||||||
@forward "../../node_modules/bulma/sass/layout/_index";
|
@forward "../../node_modules/bulma/sass/layout/_index";
|
||||||
@forward "layout";
|
@forward "layout";
|
||||||
|
|
||||||
|
// Import the themes so that all CSS variables have a value
|
||||||
|
@forward "../../node_modules/bulma/sass/themes";
|
||||||
|
|
||||||
// Stylesheets below will have access to all Bulma variables and mixins.
|
// Stylesheets below will have access to all Bulma variables and mixins.
|
||||||
@forward "content";
|
@forward "content";
|
||||||
@forward "paint";
|
@forward "paint";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue