Skip to content

Commit

Permalink
Add welcome font (forgot to git add some files
Browse files Browse the repository at this point in the history
  • Loading branch information
KilianBoute committed Oct 19, 2023
1 parent 135aa69 commit f0a87e6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
4 changes: 2 additions & 2 deletions nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
}

.navLink:hover{
text-shadow: 0px -2px 4px #fec4c4, 0px -2px 10px rgb(193, 90, 86), 0px -10px 20px
rgb(238, 255, 0), 0px -20px 40px rgb(255, 0, 0);
text-shadow: 0px -2px 4px #740000, 0px -2px 10px rgb(193, 90, 86), 0px -6px 15px rgb(188, 53, 48),
0px -10px 20px rgb(238, 255, 0), 0px -20px 40px rgb(255, 0, 0);
}


Expand Down
28 changes: 21 additions & 7 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
/* @font-face{
font-family: "roboto-regular";
src: src('fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf');
} */
@font-face{
font-family: "RobotoReg";
src: url('fonts/Roboto/Roboto-Regular.ttf');
}

@font-face{
font-family: "RobotoBold";
src: url('fonts/Roboto/Roboto-Bold.ttf');
}

@font-face {
font-family: "Baskerville";
src: url('fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf');
}

* {
box-sizing: border-box;
Expand All @@ -11,9 +21,12 @@

body {
margin: auto;
/* background-color: #F6F9F1; */
background-color: #EFF1E4;
/* font-family: "roboto-regular"; */
font-family: "RobotoReg";
}

b{
font-family: "RobotoBold";
}

.parallax {
Expand All @@ -30,8 +43,9 @@ body {
}

.parallax .welcome {
font-family: "Baskerville";
color: white;
font-size: 15vw;
font-size: 10vw;
text-shadow: -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
Expand Down

0 comments on commit f0a87e6

Please sign in to comment.