summaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2022-02-26 06:25:25 -0500
committercyfraeviolae <cyfraeviolae>2022-02-26 06:25:25 -0500
commit0e76cc78ac29dd204068a3f5483cf30ff478407a (patch)
treeb44242ce51db4b7bf8c267c5e4e90a1b7c81c02b /static/styles.css
parent9a27c952cfa865949bfd529669a009baa03ee5ad (diff)
styles
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css72
1 files changed, 72 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..03f8ee1
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,72 @@
+@font-face {
+ font-family: Charter;
+ src: url(charter_regular.woff2) format('woff2-variations');
+ font-style: normal;
+}
+
+@font-face {
+ font-family: Charter;
+ src: url(charter_italic.woff2) format('woff2-variations');
+ font-style: italic;
+}
+
+@font-face {
+ font-family: Charter;
+ src: url(charter_bold.woff2) format('woff2-variations');
+ font-weight: bold;
+}
+
+@font-face {
+ font-family: Charter;
+ src: url(charter_bold_italic.woff2) format('woff2-variations');
+ font-style: italic;
+ font-weight: bold;
+}
+
+@font-face {
+ font-family: FiraMono;
+ src: url(FiraMono-Regular.ttf);
+ font-style: normal;
+}
+
+body {
+ background: #fffaef;
+ color: DarkSlateGrey;
+ font-family: Charter, serif;
+ font-size: 18px;
+}
+
+.container {
+ margin: 0 auto;
+ margin-top: 6em;
+ max-width: 40em;
+ border: 1px DarkSlateGrey dotted;
+ border-radius: 4px;
+ padding: 2em;
+ box-shadow: 4px 4px 0px DarkSlateGrey;
+}
+
+p {
+ margin-bottom: 0;
+}
+
+a {
+ text-decoration: none;
+ color: #dd1b26;
+}
+
+a:hover {
+ text-decoration: underline;
+ color: #dd1b26;
+}
+
+
+.header {
+ font-style: italic;
+}
+
+.title {
+ font-size: x-large;
+ font-weight: bold;
+ letter-spacing: -0.5px;
+}