added default font

This commit is contained in:
jpez 2022-03-04 20:06:43 +00:00
parent b0d09985fb
commit 14d49cacd6
4 changed files with 11 additions and 2 deletions

Binary file not shown.

View File

@ -46,6 +46,7 @@
.generalInfo > span { .generalInfo > span {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: x-large;
margin-top: -2em; margin-top: -2em;
} }

View File

@ -25,7 +25,8 @@
</nav> </nav>
<main> <main>
<h1>Welcome to my little corner of the internet :)</h1> <h1>Welcome to my little corner of the Internet :)</h1>
</main> </main>
<aside class="bio"> <aside class="bio">

View File

@ -3,7 +3,8 @@ body {
background-color: transparent; background-color: transparent;
background-image: url("../assets/images/background.jpg"); background-image: url("../assets/images/background.jpg");
background-size: cover; background-size: cover;
font-family: body;
display: grid; display: grid;
grid-template-columns: 20% 40% 40%; grid-template-columns: 20% 40% 40%;
grid-template-rows: 20% 60% 20%; grid-template-rows: 20% 60% 20%;
@ -15,6 +16,7 @@ body {
footer { footer {
grid-area: footer; grid-area: footer;
color: #e5e5e5;
} }
main { main {
@ -94,3 +96,8 @@ main {
font-family: headers; font-family: headers;
src: url(../assets/fonts/game_over.woff); src: url(../assets/fonts/game_over.woff);
} }
@font-face {
font-family: body;
src: url("../assets/fonts/AmaticSC-Regular.woff");
}