mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2025-10-09 10:11:14 +00:00
Implemented tags in blog type and removed from default
This commit is contained in:
parent
d63dee8bf4
commit
b490470a71
8 changed files with 44 additions and 25 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue