summaryrefslogtreecommitdiffstats
path: root/css/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/main.css')
-rw-r--r--css/main.css61
1 files changed, 61 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css
new file mode 100644
index 0000000..d77a4c4
--- /dev/null
+++ b/css/main.css
@@ -0,0 +1,61 @@
+body { margin: 0; font-family: monospace; background-color: #FEF5ED; }
+
+.title {
+ text-align:center;
+ font-size:2.5em;
+}
+
+.outline-text-2 {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ background-color: #D3E4CD;
+ text-align: center;
+ padding: 2rem 10rem;
+}
+
+.outline-text-2 > * {
+ margin: 1rem auto;
+}
+
+table { border-collapse: collapse; }
+
+img { max-width:100%; }
+
+table {
+ margin-top:2rem;
+ margin-right:2rem;
+}
+
+table > :is(thead, tbody) > tr > :is(th, td) {
+ padding: 3px;
+ text-align: left;
+}
+
+table > thead > tr > :is(th, td) {
+ border-top: 2px solid;
+ border-bottom: 1px solid;
+}
+
+table > tbody > tr:last-child > :is(th, td) { border-bottom: 2px solid; }
+
+h2, h3, h4, h5, h6, p, ul {
+ max-width: 50rem;
+ margin: 1rem auto;
+}
+
+a {
+ text-decoration: none;
+ color: #C37B89;
+}
+
+a:hover { font-weight: bold; }
+
+#table-of-contents ul {
+ list-style-type: none;
+}
+
+#postamble { padding: 1.5rem 0; text-align: center; }
+#postamble ul li { display: inline-block; }
+#postamble ul { padding: 0; }
+#postamble li { margin-right: 2em; }