Replace christopher-dG with invenia in badges, add CSS

This commit is contained in:
Chris de Graaf 2017-08-15 18:58:51 -05:00
parent a14131ae15
commit a139cacc61
2 changed files with 80 additions and 5 deletions

View File

@ -1,7 +1,7 @@
# PkgTemplates # PkgTemplates
[![stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://christopher-dG.github.io/PkgTemplates.jl/stable) [![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://invenia.github.io/PkgTemplates.jl/stable)
[![latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://christopher-dG.github.io/PkgTemplates.jl/latest) [![Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://invenia.github.io/PkgTemplates.jl/latest)
[![Build Status](https://travis-ci.org/christopher-dG/PkgTemplates.jl.svg?branch=master)](https://travis-ci.org/christopher-dG/PkgTemplates.jl) [![Build Status](https://travis-ci.org/invenia/PkgTemplates.jl.svg?branch=master)](https://travis-ci.org/invenia/PkgTemplates.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/github/christopher-dG/PkgTemplates.jl?svg=true)](https://ci.appveyor.com/project/christopher-dG/PkgTemplates-jl) [![Build Status](https://ci.appveyor.com/api/projects/status/github/invenia/PkgTemplates.jl?svg=true)](https://ci.appveyor.com/project/invenia/PkgTemplates-jl)
[![codecov](https://codecov.io/gh/christopher-dG/PkgTemplates.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/christopher-dG/PkgTemplates.jl) [![CodeCov](https://codecov.io/gh/invenia/PkgTemplates.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/invenia/PkgTemplates.jl)

View File

@ -0,0 +1,75 @@
/* Links */
a {
color: #4595D1;
}
a:hover, a:focus {
color: #194E82;
}
/* Navigation */
nav.toc ul a:hover,
nav.toc ul.internal a:hover {
color: #FFFFFF;
background-color: #4595D1;
}
nav.toc ul .toctext {
color: #FFFFFF;
}
nav.toc {
box-shadow: none;
color: #FFFFFF;
background-color: #194E82;
}
nav.toc li.current > .toctext {
color: #FFFFFF;
background-color: #4595D1;
border-top-width: 0px;
border-bottom-width: 0px;
}
nav.toc ul.internal a {
color: #194E82;
background-color: #FFFFFF;
}
/* Text */
article#docs a.nav-anchor {
color: #194E82;
}
article#docs blockquote {
font-style: italic;
}
/* Code */
code .hljs-meta {
color: #4595D1;
}
code .hljs-keyword {
color: #194E82;
}
pre, code {
font-family: "Liberation Mono", "Consolas", "DejaVu Sans Mono", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace;
}
/* mkdocs (old) */
/*.navbar-default {
background-color: #194E82;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
background-color: #4595D1;
}*/