Added item view page; added some helpers for simplifying view logic

This commit is contained in:
2022-12-08 01:12:31 -05:00
parent dd136d19c9
commit 11d33e394b
5 changed files with 78 additions and 0 deletions

View File

@ -5,6 +5,7 @@ $box-shadow-2: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
body{
background: lightgrey;
padding-left: $nav-width;
}
#main-nav{
@ -60,3 +61,16 @@ body{
border-radius: 5px;
box-shadow: $box-shadow-2;
}
#item-header{
.item-name{
margin-bottom: 5px;
}
.item-created,
.item-updated{
color: #666;
font-size: 1.75rem;
font-style: italic;
}
}