diff options
Diffstat (limited to 'src/pallets_sphinx_themes/themes/babel')
-rw-r--r-- | src/pallets_sphinx_themes/themes/babel/static/babel.css | 24 | ||||
-rw-r--r-- | src/pallets_sphinx_themes/themes/babel/theme.conf | 3 |
2 files changed, 27 insertions, 0 deletions
diff --git a/src/pallets_sphinx_themes/themes/babel/static/babel.css b/src/pallets_sphinx_themes/themes/babel/static/babel.css new file mode 100644 index 0000000..04870e5 --- /dev/null +++ b/src/pallets_sphinx_themes/themes/babel/static/babel.css @@ -0,0 +1,24 @@ +@import url(pocoo.css); +@import url(http://fonts.googleapis.com/css?family=Bree+Serif); + +body { + font-family: "Verdana", "Garamond", "Georgia", serif; +} + +h1, h2, h3, h4, h5, h6, p.admonition-title, div.sphinxsidebar input { + font-family: "Bree Serif", "Garamond", "Georgia", serif; +} + +a { + color: #b00; + border-color: #b00; +} + +a:hover { + color: #fc5e1e; + border-color: #fc5e1e; +} + +p.version-warning { + background-color: #d40; +} diff --git a/src/pallets_sphinx_themes/themes/babel/theme.conf b/src/pallets_sphinx_themes/themes/babel/theme.conf new file mode 100644 index 0000000..b62dedd --- /dev/null +++ b/src/pallets_sphinx_themes/themes/babel/theme.conf @@ -0,0 +1,3 @@ +[theme] +inherit = pocoo +stylesheet = babel.css |