diff --git a/_sass/minima.scss b/_sass/minima.scss index ef85635f..8b50f00f 100644 --- a/_sass/minima.scss +++ b/_sass/minima.scss @@ -39,5 +39,6 @@ $on-laptop: 800px !default; @import "minima/base", "minima/layout", - "minima/prism" + "minima/prism", + "minima/intra-navigation" ; diff --git a/_sass/minima/_intra-navigation.scss b/_sass/minima/_intra-navigation.scss new file mode 100644 index 00000000..b40cb92a --- /dev/null +++ b/_sass/minima/_intra-navigation.scss @@ -0,0 +1,29 @@ +nav.intra { + margin: 0 25px 15px 25px; + padding: 10px 0; + > ul { + list-style-type: none; + margin: 0px; + overflow: auto; + > li { + border-radius: 2px; + background-color: $brand-color; + float: left; + height: 25px; + margin: 2px; + text-align: center; + overflow: hidden; + text-overflow: ellipsis; + width: 17%; + } + } + a { + color: $background-color + } + a:hover { + text-decoration: none; + } + a:visited { + color: $background-color + } +} \ No newline at end of file diff --git a/implementations.html b/implementations.html index 9d44bfb1..c45c509c 100644 --- a/implementations.html +++ b/implementations.html @@ -15,114 +15,140 @@