added default font
This commit is contained in:
parent
b0d09985fb
commit
14d49cacd6
Binary file not shown.
|
|
@ -46,6 +46,7 @@
|
|||
.generalInfo > span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: x-large;
|
||||
margin-top: -2em;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@
|
|||
</nav>
|
||||
|
||||
<main>
|
||||
<h1>Welcome to my little corner of the internet :)</h1>
|
||||
<h1>Welcome to my little corner of the Internet :)</h1>
|
||||
|
||||
</main>
|
||||
|
||||
<aside class="bio">
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ body {
|
|||
background-color: transparent;
|
||||
background-image: url("../assets/images/background.jpg");
|
||||
background-size: cover;
|
||||
font-family: body;
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: 20% 40% 40%;
|
||||
|
|
@ -15,6 +16,7 @@ body {
|
|||
|
||||
footer {
|
||||
grid-area: footer;
|
||||
color: #e5e5e5;
|
||||
}
|
||||
|
||||
main {
|
||||
|
|
@ -94,3 +96,8 @@ main {
|
|||
font-family: headers;
|
||||
src: url(../assets/fonts/game_over.woff);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: body;
|
||||
src: url("../assets/fonts/AmaticSC-Regular.woff");
|
||||
}
|
||||
Loading…
Reference in New Issue