-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.scss
More file actions
60 lines (46 loc) · 1.28 KB
/
index.scss
File metadata and controls
60 lines (46 loc) · 1.28 KB
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
@import "./node_modules/bootstrap/scss/functions";
@import "./node_modules/bootstrap/scss/variables";
@import "./node_modules/bootstrap/scss/mixins";
// Optional
/*@import "../node_modules/bootstrap/scss/root";
@import "../node_modules/bootstrap/scss/reboot";
@import "../node_modules/bootstrap/scss/type";*/
@font-face {
font-family: 'DeliciousHandrawn-Regular';
src: url('./fonts/Delicious_Handrawn/DeliciousHandrawn-Regular.ttf') format('truetype');
font-style: normal;
font-weight: normal;
}
$primary: #1b87e6;
$secondary: #09192f;
// theme colors
$theme-colors: (
"primary": $primary,
"secondary": $secondary,
"light": $light
);
// Create your own map
$custom-colors: (
"third": #cedcf6,
"fourth": #269bbb,
"stars": #f7c901
);
// Merge the maps
$theme-colors: map-merge($theme-colors, $custom-colors);
// Merge the delete maps
//$theme-colors: map-remove($theme-colors, "info", "light", "dark");
$font-size-base: 18px;
.banner-img {
background-image: url(./images/web-development.png);
background-position: center center;
min-height: 26rem;
display: flex;
align-items: center;
}
.banner-text {
backdrop-filter: blur(10px);
}
.font-family-DeliciousHandrawn {
font-family: DeliciousHandrawn-Regular;
}
@import "./node_modules/bootstrap/scss/bootstrap.scss";