Skip to content

Commit b4d156c

Browse files
committed
major update with new logo, additional content, and fixes
1 parent 9080c13 commit b4d156c

17 files changed

Lines changed: 515 additions & 173 deletions

CONTRIBUTING.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

assets/icons/logo.svg

Lines changed: 101 additions & 0 deletions
Loading

assets/scss/_styles_project.scss

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
.person {
3+
@extend .rounded;
4+
background-color: $horta-secondary2;
5+
color: black;
6+
padding: 10pt;
7+
margin: 20pt; // Increased margin to ensure no overlap
8+
width: 22rem;
9+
}
10+
11+
.person .card-title {
12+
font-weight: bold;
13+
}
14+
15+
// Controlling the overlay color on the cover image
16+
.td-overlay--dark::after {
17+
background-color: #131317;
18+
opacity: 0.2;
19+
}
20+
21+
.aligncenter {
22+
display: block;
23+
margin: 0 auto;
24+
}

assets/scss/_variables_project.scss

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ Add styles or override variables from the theme here.
44
55
*/
66

7-
$primary: #5A8185;
8-
$secondary: #848145;
7+
$primary: #3e406a;
8+
$secondary: #bfac4f;
9+
$light: #78b3a8;
10+
11+
// $body-bg: #131317;
912

1013
$enable-gradients: true;
1114
$enable-rounded: true;
@@ -27,7 +30,6 @@ $display-font-sizes: (
2730
);
2831

2932
$display-font-weight: 100;
30-
//$display-line-height: $headings-line-height;
3133

3234
.display-1 {
3335
font-size: 56px !important;
@@ -45,16 +47,3 @@ $font-weight-light: 300;
4547
$font-weight-normal: 400;
4648
$font-weight-bold: 300;
4749
$headings-font-weight: 300;
48-
49-
.person {
50-
@extend .rounded;
51-
background-color: white;
52-
padding: 1pt;
53-
margin: 10pt;
54-
width: 22rem;
55-
}
56-
57-
.person card-body {
58-
min-width: 300px;
59-
color: red;
60-
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
$horta-primary: #3e406a;
2+
$horta-dark: #2a2c4c;
3+
$horta-secondary: #bfac4f;
4+
$horta-secondary2: #f6e793;
5+
6+
$custom-colors: (
7+
'horta-primary': $horta-primary,
8+
'horta-dark': $horta-dark,
9+
'horta-secondary': $horta-secondary,
10+
'horta-secondary2': $horta-secondary2
11+
);
12+
13+
$theme-colors: map-merge($theme-colors, $custom-colors);

0 commit comments

Comments
 (0)