Add support for tag browsing and collection browsing

This commit is contained in:
Alex Cabal 2019-02-26 17:05:23 -06:00
parent f5d7d4e02a
commit cfa54122d6
8 changed files with 181 additions and 14 deletions

View file

@ -1035,6 +1035,40 @@ figure{
margin-top: 1rem;
}
ul.tags{
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
ul.tags li{
margin: 0;
}
ul.tags li a{
border: 1px solid #222;
border-radius: 5px;
padding: .25rem .5rem;
font-style: normal;
background: rgba(0, 0, 0, .1);
text-decoration: none;
display: block;
line-height: 1;
white-space: nowrap;
text-transform: lowercase;
box-shadow: 1px 1px 0px rgba(255, 255, 255, .5) inset;
}
ul.tags li a:hover{
color: #fff;
background: #288da4;
}
ul.tags li + li{
margin-left: .5rem;
}
code.tag,
code.path,
code.program,