Merge pull request #23 from go-gitea/feature/aside-navigation

Start a decent aside navigation style
This commit is contained in:
Thomas Boerger 2016-12-23 01:18:54 +01:00 committed by GitHub
commit 89e5d7d034
1 changed files with 23 additions and 0 deletions

View File

@ -36,3 +36,26 @@
@extend .blockquote;
}
}
aside ul.nav {
border-right: 1px solid lighten($accent-color, 30);
ul {
margin: 0;
padding: 8px;
margin-left: -8px;
margin-bottom: 16px;
margin-right: 16px;
border-top: 1px dashed lighten($accent-color, 30);
}
li {
list-style: none;
margin:0;
padding: 0;
li a {
font-size: 0.9rem;
}
}
}