Super basic CSS styling

This commit is contained in:
Warren Buckley
2017-06-04 17:25:24 +01:00
parent 768525a0c7
commit 614c4f2d36
+27 -1
View File
@@ -9,5 +9,31 @@
var markdown = ml.DoTransformation();
}
<html>
<head>
<title></title>
<link href="https://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic" type="text/css" rel="stylesheet"/>
<style>
body {
font-family: Asap, sans-serif;
}
code {
background-color: #eeeeee;
display: block;
padding: 5px;
}
img {
max-width: 90%;
}
</style>
</head>
<body>
<div>
@Html.Raw(markdown)
</div>
</body>
</html>
@Html.Raw(markdown)