Skip to content

Commit 3e42e73

Browse files
committedMay 29, 2015
more css from base kept in lanyon
1 parent 6fb76b5 commit 3e42e73

File tree

2 files changed

+46
-16
lines changed

2 files changed

+46
-16
lines changed
 

Diff for: ‎v7/lanyon/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ License is MIT
1818
Known Issues:
1919

2020
* Not all features of Nikola are tested.
21-
* Galleries will not work until [Issue #1764](https://github.com/getnikola/nikola/issues/1764) is fixed.
22-
* Crumb bars are not done well
21+
* Galleries will work better when [Issue #1764](https://github.com/getnikola/nikola/issues/1764) is fixed.
2322
* Submenus in navigation links are not supported
2423
* CDNs are not used regardless of ``USE_CDN``

Diff for: ‎v7/lanyon/assets/css/lanyon.css

+45-14
Original file line numberDiff line numberDiff line change
@@ -566,22 +566,53 @@ a.pagination-item:hover {
566566
}
567567

568568
.sr-only {
569-
position: absolute;
570-
width: 1px;
571-
height: 1px;
572-
padding: 0;
573-
margin: -1px;
574-
overflow: hidden;
575-
clip: rect(0, 0, 0, 0);
576-
border: 0;
569+
position: absolute;
570+
width: 1px;
571+
height: 1px;
572+
padding: 0;
573+
margin: -1px;
574+
overflow: hidden;
575+
clip: rect(0, 0, 0, 0);
576+
border: 0;
577577
}
578578

579579
.sr-only-focusable:active,
580580
.sr-only-focusable:focus {
581-
position: static;
582-
width: auto;
583-
height: auto;
584-
margin: 0;
585-
overflow: visible;
586-
clip: auto;
581+
position: static;
582+
width: auto;
583+
height: auto;
584+
margin: 0;
585+
overflow: visible;
586+
clip: auto;
587+
}
588+
589+
.breadcrumb {
590+
padding: 8px 15px;
591+
margin-bottom: 20px;
592+
list-style: none;
593+
}
594+
595+
.breadcrumb > li {
596+
display: inline-block;
597+
margin-right: 0;
598+
margin-left: 0;
599+
}
600+
601+
.breadcrumb > li:after {
602+
content: ' / ';
603+
color: #888;
604+
}
605+
606+
.breadcrumb > li:last-of-type:after {
607+
content: '';
608+
margin-left: 0;
609+
}
610+
611+
.thumbnails > li {
612+
display: inline-block;
613+
margin-right: 10px;
614+
}
615+
616+
.thumbnails > li:last-of-type {
617+
margin-right: 0;
587618
}

0 commit comments

Comments
 (0)
Please sign in to comment.