Skip to content

Commit 6e212b3

Browse files
authored
Merge pull request #101 from vishalvivekm/fix-color-of-heading
updage-h1-color-to-#fff-on-homepage
2 parents b466ffc + 138c866 commit 6e212b3

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ The docker image is pre-built with all the website dependencies installed, which
1717

1818
### With Golang
1919

20-
If your local development environment has a supported version (v1.21.0+) of Golang installed you can run:
20+
If your local development environment has a supported version (v1.21.0+) of Golang installed, next you'll need to install extended hugo version as it has necessary SCSS/SASS support. Find all the hugo packages here: https://github.com/gohugoio/hugo/releases/tag/v0.120.4
2121

22-
make setup
23-
make site
22+
Now to setup and run the site locally run:
23+
24+
`make setup` followed by `make site`
2425

2526
...and then visit http://localhost:1313.
2627

assets/scss/_styles_project.scss

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -351,14 +351,12 @@ a:not([href]):not([class]):hover {
351351
margin-bottom: 4rem;
352352
font-size:5rem;
353353
text-align: left;
354-
background: linear-gradient(90deg,
355-
rgba(235,192,23, 0.46) 9.03%,
356-
rgba(223, 255, 199, 0.57) 41.12%,
357-
rgba(255,243,197, 0.31) 61.68%) repeat scroll 0% 0% / auto padding-box text, rgba(0, 0, 0, 0)
358-
linear-gradient(rgb(239, 239, 241), rgb(239, 239, 255)) repeat scroll 0% 0% / auto padding-box text;
359-
background-position: 0% 0%, 0% 0%;
354+
background:
355+
linear-gradient(217deg, rgba(249,245,13, 0.26), rgba(223, 255, 219, 0.57) 9.03%),
356+
linear-gradient(127deg, rgba(249,245,13, 0.7), rgba(223, 225, 199, 0.1) 41.12%),
357+
linear-gradient(336deg, rgba(249,245,13, 0.1), rgba(239, 239, 251, 0.81) 0%); background-position: 0% 0%, 0% 0%;
360358
box-sizing: auto;
361-
color: rgba(0, 0, 0, 0);
359+
color: rgba(0, 0, 0, 0);
362360
display:block;
363361
text-rendering: optimizelegibility;
364362
-webkit-background-clip: text, text;

0 commit comments

Comments
 (0)