summaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css
new file mode 100644
index 0000000..5dcb384
--- /dev/null
+++ b/src/style.css
@@ -0,0 +1,51 @@
+body{ /* Normal */
+ font-size: 18px;
+ margin-bottom: 1em;
+ }
+td { /* Table */
+ font-size: 22px;
+}
+div.section {
+ margin-bottom: 1em;
+}
+
+ul.nav {
+ font-size: 22px;
+}
+
+h1.title {
+ font-size: 38px;
+ color: DarkRed;
+ margin-bottom: 1em;
+ margin-top: 1em;
+}
+h1 { /* Header 1 */
+ font-size: 28px;
+ color: Black;
+ margin-bottom: 1em;
+ margin-top: 1em;
+}
+h2 { /* Header 2 */
+ font-size: 22px;
+ color: Black;
+ margin-bottom: 1em;
+ margin-top: 1em;
+}
+h3 { /* Header 3 */
+ font-size: 18px;
+ color: Black;
+}
+
+h4 { /* Header 4 */
+ font-size: 18px;
+ color: Black;
+ margin-bottom: 1em;
+}
+
+code.r{ /* Code block */
+ font-size: 16px;
+ margin-bottom: 1em;
+}
+pre { /* Code block - determines code spacing between lines */
+ font-size: 16px;
+}