Skip to content

Commit

Permalink
Merge pull request #6 from RainbowJM/main
Browse files Browse the repository at this point in the history
merge
  • Loading branch information
RainbowJM authored Apr 11, 2023
2 parents 158fbe5 + cea5f92 commit 64119b2
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
44 changes: 44 additions & 0 deletions public/styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

:root {
/*color palette*/

--coral-deeppink: #ff4a61;
--orange-yellow: #feb63d;
--light-grey: #e2e2e2;
--black: #000000;

--title: 'Commissioner', Arial,
Helvetica,
sans-serif;
--text: 'Commissioner', Arial,
Helvetica,
sans-serif;

}


body {
font-family: var(--text);
}

h1{
font-family: var(--title);
font-weight: 500;
}

p{
font-weight: 400;
}

li {
list-style: none;
}

a {
text-decoration: none;
}
6 changes: 5 additions & 1 deletion views/partials/head.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
<title>Dicho di Hubentut</title>
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/styles/style.css">
<link rel="manifest" href="/manifest.json">
<link rel="manifest" href="/manifest.json">
<!-- Fonts -->
<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=Commissioner:wght@300;400;500&display=swap" rel="stylesheet">

0 comments on commit 64119b2

Please sign in to comment.