aboutsummaryrefslogtreecommitdiff
path: root/styles
diff options
context:
space:
mode:
Diffstat (limited to 'styles')
-rw-r--r--styles/defaults.scss41
-rw-r--r--styles/reset.css44
2 files changed, 85 insertions, 0 deletions
diff --git a/styles/defaults.scss b/styles/defaults.scss
new file mode 100644
index 0000000..e8cd0bf
--- /dev/null
+++ b/styles/defaults.scss
@@ -0,0 +1,41 @@
+body {
+ font-family: Inconsolata, monospace;
+ font-weight: 400;
+}
+
+h1 {
+ font-size: 2.8rem;
+ font-weight: 300;
+ line-height: 1.167;
+ letter-spacing: -0.01562em;
+}
+
+a {
+ text-decoration: none;
+}
+
+p, ul {
+ margin-top: 0.3rem;
+ margin-bottom: 0.6rem;
+}
+
+li {
+ margin: 0 0.08rem;
+}
+
+h3 {
+ font-size: 1.5rem;
+ margin-top: 0.4rem;
+ margin-bottom: 1rem;
+}
+
+ul {
+ list-style-type: disc;
+ list-style-position: inside;
+}
+
+ul > ul {
+ list-style-type: circle;
+ list-style-position: inside;
+ margin-left: 1em;
+} \ No newline at end of file
diff --git a/styles/reset.css b/styles/reset.css
new file mode 100644
index 0000000..61a3231
--- /dev/null
+++ b/styles/reset.css
@@ -0,0 +1,44 @@
+
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}