Skip to content

Commit cca9a5e

Browse files
css changes
1 parent add9bbd commit cca9a5e

File tree

2 files changed

+84
-2
lines changed

2 files changed

+84
-2
lines changed
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
@charset "utf-8";
2+
3+
/**
4+
* markdown.css
5+
*
6+
* Found on github at https://github.com/jasonm23/markdown-css-themes
7+
*
8+
* This program is free software: you can redistribute it and/or modify it under
9+
* the terms of the GNU Lesser General Public License as published by the Free
10+
* Software Foundation, either version 3 of the License, or (at your option) any
11+
* later version.
12+
*
13+
* This program is distributed in the hope that it will be useful, but WITHOUT
14+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15+
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16+
* details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with this program. If not, see http://gnu.org/licenses/lgpl.txt.
20+
*
21+
* @project Weblog and Open Source Projects of Florian Wolters
22+
* @version GIT: $Id$
23+
* @package xhtml-css
24+
* @author Florian Wolters <[email protected]>
25+
* @copyright 2012 Florian Wolters
26+
* @cssdoc version 1.0-pre
27+
* @license http://gnu.org/licenses/lgpl.txt GNU Lesser General Public License
28+
* @link http://github.com/FlorianWolters/jekyll-bootstrap-theme
29+
* @media all
30+
* @valid true
31+
*/
32+
33+
body {
34+
font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
35+
padding:1em;
36+
margin:auto;
37+
background:#fefefe;
38+
}
39+
40+
.mfrViewer {
41+
padding: 10px;
42+
height: auto;
43+
}
44+
45+
hr {
46+
height: 0.2em;
47+
border: 0;
48+
color: #CCCCCC;
49+
background-color: #CCCCCC;
50+
}
51+
52+
p, blockquote, ul, ol, dl, li, table, pre {
53+
margin: 15px 0;
54+
}
55+
56+
code, pre {
57+
border-radius: 3px;
58+
background-color: #F8F8F8;
59+
color: inherit;
60+
}
61+
62+
63+
pre {
64+
border: 1px solid #CCCCCC;
65+
line-height: 1.25em;
66+
overflow: auto;
67+
padding: 6px 10px;
68+
}
69+
70+
pre > code {
71+
border: 0;
72+
margin: 0;
73+
padding: 0;
74+
}
75+
76+
a, a:visited {
77+
color: #4183C4;
78+
background-color: inherit;
79+
text-decoration: none;
80+
}

mfr/extensions/md/templates/viewer.mako

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,300,700" rel="stylesheet" type="text/css">
2-
<link type="text/css" rel="stylesheet" href="/static/css/bootstrap.min.css">
1+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,300' rel='stylesheet' type='text/css'>
2+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
33
<link type="text/css" rel="stylesheet" href="${base}/css/highlightjs-default.css">
4+
<link rel="stylesheet" href="${base}/css/default.css">
5+
46

57
<script type="text/x-mathjax-config">
68
MathJax.Hub.Config({

0 commit comments

Comments
 (0)