Skip to content

Commit

Permalink
added quotes for footer
Browse files Browse the repository at this point in the history
  • Loading branch information
dejotb committed May 16, 2022
1 parent 21d2e7e commit 141d6bc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
9 changes: 7 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<link rel="stylesheet" href="style.css" />

<script defer src="app.js"></script>
<title>Notes</title>
<title>Notes & Quotes</title>
</head>
<body>
<div class="container__settings">
Expand Down Expand Up @@ -58,7 +58,12 @@
</div>

<footer class="footer">
<p>Notes</p>
<p class="footer__quote">
„ Silence is the sleep that nourishes wisdom ”.
</p>
<p class="footer__author">olaf porotsds</p>

<!-- <p>Notes</p> -->
</footer>
</body>
</html>
15 changes: 13 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,22 @@ fieldset {

.footer {
align-self: end;
display: flex;
padding: 1rem;
line-height: 0.9;
display: grid;
justify-content: center;
font-size: 4rem;
/* font-size: 2.5rem; */
color: #d6e5e5;
}

.footer__quote {
font-family: var(--ff-display);
font-size: 3rem;
}

.footer__author {
font-family: var(--ff-primary);
font-size: 1.2rem;
}

/* animations */
Expand Down

0 comments on commit 141d6bc

Please sign in to comment.