Implemented tags in blog type and removed from default

This commit is contained in:
Brandon Rozek 2020-02-16 17:29:11 -05:00
parent d63dee8bf4
commit b490470a71
8 changed files with 44 additions and 25 deletions

View file

@ -80,7 +80,7 @@ nav ul {
}
nav li {
margin: 10px;
margin: 0 10px;
}
/* Contents List */
@ -94,6 +94,7 @@ nav li {
#searchBox #searchBoxInput {
position: absolute;
width: 100%;
height: 100%;
padding: 0 35px 0 15px;
top: 0;
left: 0;
@ -126,7 +127,7 @@ nav li {
max-width: 600px;
/* min-width: 300px; */
margin: 0 auto;
top: 240px;
top: 330px;
left: 0;
right: 0;
padding: 5px;
@ -154,6 +155,27 @@ nav li {
background-color: #dddfdf;
}
#tags ul {
max-width: 600px;
margin: 0 auto;
display: flex;
padding: 0;
justify-content: center;
flex-wrap: wrap;
list-style: none;
}
#tags li a {
display: block;
height: 24px;
margin: 5px;
padding: 0 5px;
background-color: #dddfdf;
border-radius: 5px;
font-size: 14px;
/* text-decoration: none; */
}
#contentsList {
padding: 20px 0;
}