summaryrefslogtreecommitdiff
path: root/styles/main.scss
blob: 1f12ce2f7bfebe10b5e966089edb09a963ebed80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@charset "utf-8";

// Google Fonts
@import url("https://fonts.googleapis.com/css?family=Architects+Daughter|Indie+Flower|PT+Sans|PT+Sans+Narrow&display=swap");

// Palette
$darkteal: rgb(0, 100, 108);
$green: rgb(88, 169, 143);
$darkerteal: rgb(29, 133, 137);
$gray: rgb(157, 210, 211);
$teal: rgb(58, 165, 166);
$cyan: rgb(156, 210, 210);
$darkgray: rgb(127, 177, 181);
$darkgreen: rgb(59, 136, 114);
$yellow: rgb(186, 214, 187);

// Update Bulma's global variables
$primary: $teal;
$link: $darkteal;
// $info: $cyan
$success: $green;
// $warning: $yellow
// $danger: $red
// $dark: $grey-darker
// $text: $grey-dark
$family-sans-serif: "PT Sans", sans-serif;
// $hr-background-color: $primary;
$title-color: $darkteal;
$title-family: "Architects Daughter", cursive;
$subtitle-color: $darkteal;
$subtitle-family: "Indie Flower", cursive;
//$body-font-size: 1.8rem;
// $body-background-color: $isabelline;
// $table-striped-row-even-background-color: $darkteal;
$table-cell-heading-color: $darkteal;
$table-head-cell-color: $darkteal;
$dimensions: 16 24 32 48 64 96 128 200 256;

nav {
  font-family: "PT Sans Narrow", sans-serif;
}

// Import only what you need from Bulma
@import "../_bulma/node_modules/bulma/sass/utilities/functions.sass";
@import "../_bulma/node_modules/bulma/sass/utilities/initial-variables.sass";
@import "../_bulma/node_modules/bulma/sass/utilities/derived-variables.sass";
@import "../_bulma/node_modules/bulma/sass/utilities/controls.sass";
@import "../_bulma/node_modules/bulma/sass/utilities/mixins.sass";
@import "../_bulma/node_modules/bulma/sass/base/_all.sass";
@import "../_bulma/node_modules/bulma/sass/components/modal.sass";
@import "../_bulma/node_modules/bulma/sass/components/navbar.sass";
@import "../_bulma/node_modules/bulma/sass/elements/box.sass";
@import "../_bulma/node_modules/bulma/sass/elements/button.sass";
@import "../_bulma/node_modules/bulma/sass/elements/container.sass";
@import "../_bulma/node_modules/bulma/sass/elements/content.sass";
@import "../_bulma/node_modules/bulma/sass/elements/icon.sass";
@import "../_bulma/node_modules/bulma/sass/elements/image.sass";
@import "../_bulma/node_modules/bulma/sass/elements/table.sass";
@import "../_bulma/node_modules/bulma/sass/elements/title.sass";
@import "../_bulma/node_modules/bulma/sass/form/shared.sass";
@import "../_bulma/node_modules/bulma/sass/form/tools.sass";
@import "../_bulma/node_modules/bulma/sass/form/input-textarea.sass";
@import "../_bulma/node_modules/bulma/sass/grid/columns.sass";
@import "../_bulma/node_modules/bulma/sass/layout/footer.sass";
@import "../_bulma/node_modules/bulma/sass/layout/section.sass";