Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
Bug Fix: Poet links
Browse files Browse the repository at this point in the history
Poet links on Poets page now direct user to poets on index.

Changed Font to a way cooler and more better font.
  • Loading branch information
MetzinAround committed Jan 3, 2021
1 parent f36ab8d commit 4a7e71c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file added Artwork/YNFP Add Poet page.sketch
Binary file not shown.
2 changes: 1 addition & 1 deletion Your New Favorite Poem/Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
@foreach (var poem in author.Poems.Where(x => x.IsVerified is true))
{

<li><a href=@poem.URL target="_blank">@poem.Title</a></li>
<li><a id="@author.Name"href=@poem.URL target="_blank">@poem.Title</a></li>
}
</ul>
</section>
Expand Down
8 changes: 4 additions & 4 deletions Your New Favorite Poem/wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,15 @@ button.accept-policy {
html {
position: relative;
min-height: 100%;
background-color: #b2f0e4
background-color: #b2f0e4;
font-family: 'Times New Roman', Times, serif;
}

body {
/* Margin bottom by footer height */
margin-bottom: 60px;
background-color: #b2f0e4;
font-family: 'Times New Roman', Times, serif;
}
.footer {
position: absolute;
Expand All @@ -95,7 +97,6 @@ body {
margin: 5%;
display: inline-flex;
flex-direction: row;
font-family: Helvetica;
float: left;
}

Expand All @@ -109,7 +110,7 @@ body {
box-shadow: 5px 5px 15px #79a39b, -5px -5px 15px #ebffff;
margin: 5%;
padding: 5%;
font-family: Helvetica;

}

.button {
Expand Down Expand Up @@ -144,6 +145,5 @@ body {
margin: 5%;
display: inline-flex;
flex-direction: row;
font-family: Helvetica;
float: left;
}

0 comments on commit 4a7e71c

Please sign in to comment.