Skip to content

Instantly share code, notes, and snippets.

@derekedelaney
Forked from davidfmiller/man-markdown.css
Created May 31, 2018 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derekedelaney/9dd57d6a5dbe6712a1e514d9a2dba11d to your computer and use it in GitHub Desktop.
Save derekedelaney/9dd57d6a5dbe6712a1e514d9a2dba11d to your computer and use it in GitHub Desktop.
BBEdit Markdown Preview CSS
@charset "UTF-8";
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}
html {
background: #fff;
}
body {
background: #fff;
color: #000;
font: 12px menlo, consolas, monaco, monospace;
max-width: 800px;
margin: 0 50px;
padding: 20px 0;
}
h1 {
font-size: 20px;
position: relative;
font-weight: bold;
}
h2 {
margin: 20px 0 20px 0;
position: relative;
font-weight: bold;
font-size:15px;
}
h3 {
font-weight: bold;
position: relative;
margin: 20px 0 20px 0;
}
h1, h2, h3 {
color: #444;
}
a {
color: blue;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
}
a:visited {
color: purple;
}
a:hover {
color: red;
}
h1 a,
h1 a:visited {
color: #000;
border-bottom-width: 0;
}
h1 a:hover {
border-bottom-width: 1px;
}
dt a,
dt a:visited,
h3 a,
h3 a:visited,
h2 a,
h2 a:visited {
position: absolute;
text-decoration: none;
border: none;
color: #eee;
left: -15px;
transition: color 0.2s linear;
}
dt:hover a,
h3:hover a,
h2:hover a {
color: #888;
}
dt:target a,
h2:target a,
h3:target a,
dt:target a:hover,
h2:target a:hover,
h3:target a:hover {
color: red;
}
h3 a:hover,
dt a:hover,
h2 a:hover {
text-decoration: underline;
color: blue;
}
p {
margin: 20px 0;
line-height: 2em;
}
p + p {
margin-top: -10px;
}
dt {
position: relative;
}
dl {
margin: 20px 0;
}
dd {
padding-left: 10px;
margin: 10px 0;
}
dd ul, dd ol {
margin-top: 10px;
}
dd:before {
content: "-";
padding-right:10px;
}
dt + dd > pre {
margin: 0;
}
dd + dd > pre {
margin: -10px 0 10px 0;
}
li {
padding-left: 10px;
margin-bottom: 10px;
}
li:last-child {
margin-bottom: 0;
}
ol li {
list-style-position: inside;
list-style-type: decimal;
}
ul li:after {
content: ",";
color: #666;
}
li:last-child {
}
ul li:last-child:after {
content: "."
}
ul li:before {
content: "×";
color: #666;
padding-right: 10px;
}
em {
font-style: italic;
}
code, pre {
font-family: consolas, menlo, monaco, monospace-serif;
background: rgba(0,0,0,0.03);
}
pre code {
line-height: 20px;
}
code a,
code {
color: #666;
}
code:hover {
background: #f0f0f0;
}
pre {
background: rgba(0,0,0,0.02);
padding: 10px;
border-radius: 3px;
margin: 20px 0;
border: 1px solid rgba(0,0,0,0.1);
transition: background-color 0.2s, border-color 0.2s;
cursor: text;
position: relative;
overflow: scroll;
}
pre.lines {
padding: 10px 0;
}
pre code {
background: transparent;
}
pre:hover {
background:rgba(0,0,0,0.05);
border-color: rgba(0,0,0,0.3);
}
pre a {
color: blue;
border-bottom-width: 0;
}
pre a:hover {
border-bottom-width: 1px;
}
i {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
dl {
margin: 10px 0;
}
hr {
height: 1px;
border: none;
line-height: 0;
padding: 0;
/* background: rgba(0,0,0,0.1);*/
background: rgba(127,127,127,0.1);
margin: 20px 0;
}
pre table {
width: 100%;
}
pre tr td {
transition: background-color 0.1s;
padding: 0.1em 0;
}
@media screen and (max-device-width: 480px) { /* smartphone */
body { width: 90%; margin: 0 auto; padding: 10px 0; }
}
@media only screen and (device-width: 768px) { /* tablet */
body { width: 90%; margin: 0 auto; padding: 10px 0; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment