summaryrefslogtreecommitdiff
path: root/src/scss/index.scss
blob: 2b9aec2fd3182664569c87099a419a00dbbb9489 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@charset "utf-8";

// Google Fonts
@import url('https://fonts.googleapis.com/css?family=Architects+Daughter|Indie+Flower|PT+Sans&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.25rem;
// $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";

// Palette
.darkteal {
	background-color: $darkteal;
	color: white;
}
.green {
	background-color: $green;
	color: white;
}
.darkerteal {
	background-color: $darkerteal;
	color: white;
}
.gray {
	background-color: $gray;
	color: white;
}
.teal {
	background-color: $teal;
	color: white;
}
.cyan {
	background-color: $cyan;
	color: white;
}
.darkgray {
	background-color: $darkgray;
	color: white;
}
.darkgreen {
	background-color: $darkgreen;
	color: white;
}
.yellow {
	background-color: $yellow;
	color: white;
}

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

.banner {
	right: 100%;
	padding-top: 5%;
	padding-bottom: 5%;
	padding-right: 5%;

	// gradient
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}

.has-banner {
	//margin-top: 0px !important;
	//margin-bottom: 0px !important;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-right: 0px !important;
	padding-left: 10% !important;

}

.quiet {
	background-color: white;
}

.fawnseh {
	font-family: 'Architects Daughter', cursive;
}

.has-text-shadow {
	text-shadow: 0px 0px 4px #ffffff;
}

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