summaryrefslogtreecommitdiff
path: root/src/scss/index.scss
blob: ac1ab6d2b25054c95937e8af071f7a9777deec66 (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
@charset "utf-8";

// Import Google Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');

// Set brand colors
$pine-green: #01646d;
$midnight-green: #114b5f;
$eton-blue: #88d498;
$pastel-gray: #c6dabf;
$isabelline: #f7f4ea;

// Update Bulma's global variables
// $primary: $pine-green;
// $link: $midnight-green;
// $info: $cyan
// $success: $eton-blue;
// $warning: $yellow
// $danger: $red
// $dark: $grey-darker
// $text: $grey-dark
// $family-sans-serif: "Nunito", sans-serif;
// $hr-background-color: $primary;

// $body-background-color: $isabelline;

// Import only what you need from Bulma
@import "../../node_modules/bulma/sass/utilities/_all.sass";
@import "../../node_modules/bulma/sass/base/_all.sass";
@import "../../node_modules/bulma/sass/elements/_all.sass";
@import "../../node_modules/bulma/sass/form/_all.sass";
@import "../../node_modules/bulma/sass/components/_all.sass";
@import "../../node_modules/bulma/sass/layout/_all.sass";
@import "../../node_modules/bulma/sass/grid/_all.sass";

.blurb {
	background-color: white;
	clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.banner {
	border-radius: 5px !important;
	clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

body {
	background-image: url("/bg.png");
}