diff options
author | Justin Mayer <entroP@gmail.com> | 2013-11-22 05:54:10 -0800 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-11-22 05:54:10 -0800 |
commit | 7ef242b7580306f953756a7ea3d2632c70ef30b8 (patch) | |
tree | 7eaf625baa0858402e2a031860d1c6a6c3a2dd7b | |
parent | 6831d82ffc4dd37385d3ec9dfe72126e8a71f793 (diff) | |
parent | 55ed9e8cdd8682892b357840f88a514d7d11284c (diff) | |
download | pelican-themes-7ef242b7580306f953756a7ea3d2632c70ef30b8.tar.gz |
Merge pull request #161 from lwm/patch-1
Add pygment.css import to Monospace theme
-rw-r--r-- | monospace/static/css/main.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/monospace/static/css/main.css b/monospace/static/css/main.css index 1947c35..14f2e43 100644 --- a/monospace/static/css/main.css +++ b/monospace/static/css/main.css @@ -10,6 +10,8 @@ * License URI: http://www.gnu.org/licenses/gpl-2.0.html */ +@import url("pygment.css"); + body { margin:0px; padding:20px 0px; text-align:center; font-family:Monospace; color:#585858; } a, a:visited { text-decoration:none; color:rgb(17, 170, 34); } a:hover { color:#FFF; background-color:#5353CB } |