Skip to content

Commit

Permalink
Merge pull request #30 from shreyvarshney1/master
Browse files Browse the repository at this point in the history
enhancement: font update
  • Loading branch information
desujoy authored Oct 8, 2024
2 parents 7398785 + 889876a commit ccdb695
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 16 deletions.
15 changes: 12 additions & 3 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
body {
font-family: "Lobster", cursive;
font-family: "Protest Strike", sans-serif;
font-weight: 200;
font-style: normal;
margin: 0;
padding: 0;
background: #eff1f5;
Expand Down Expand Up @@ -109,19 +111,26 @@ img {
}

.copyright-box {
font-family: cursive;
font-family: "Qwitcher Grypen", cursive;
font-weight: 400;
font-style: normal;
font-size: x-large;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
margin-bottom: 2%;
}

.fixed-bottom {
.fixed-bottom {
font-family: cursive;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}

.copyright-box > a {
text-decoration: none;
}
28 changes: 15 additions & 13 deletions views/header.ejs
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kushiro</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=VT323&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css">
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/jquery/moreless.js"></script>

</head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kushiro</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Protest+Strike&family=Qwitcher+Grypen&family=VT323&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/jquery/moreless.js"></script>
</head>
</html>

0 comments on commit ccdb695

Please sign in to comment.