aboutsummaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..eb4bb78
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,80 @@
+body {
+ margin: 0px auto 0px auto;
+ padding: 1%;
+ max-width: 1000px;
+ font-family: sans-serif;
+ text-rendering: optimizeLegibility;
+}
+
+header {
+ border-bottom: 2px solid black;
+ margin-bottom: 30px;
+ padding: 12px 0px 12px 0px;
+}
+
+nav {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+}
+
+nav a {
+ color: maroon;
+ font-size: 18px;
+ margin: 12px;
+ text-decoration: none;
+}
+
+footer {
+ border-top: solid 2px black;
+ font-size: 14px;
+ margin-top: 30px;
+ padding: 12px 0px 12px 0px;
+}
+
+footer li {
+ list-style-type: none;
+ margin-top: 10px;
+}
+
+footer li a {
+ margin-left: 5px;
+}
+
+div.sourceCode {
+ padding: 3px;
+ border: 1px solid;
+ border-radius: 10px;
+}
+
+pre {
+ white-space: pre-wrap;
+ counter-reset: line;
+}
+
+code {
+ font-family: monospace;
+}
+
+pre a:before {
+ color: #aaa;
+ content: counter(line);
+ counter-increment: line;
+ display: inline-block;
+ width: 3em;
+ margin-left: auto;
+ margin-right: 1em;
+ padding-left: auto;
+ text-align: right;
+}
+
+article .header {
+ color: #555;
+ font-size: 14px;
+ font-style: italic;
+}
+
+.simple-icon {
+ height: 22px;
+ vertical-align: middle;
+}