summaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2021-07-04 23:58:55 -0400
committercyfraeviolae <cyfraeviolae>2021-07-04 23:58:55 -0400
commitf09e3205cffadcde1753e09a148a27f1cb8c6264 (patch)
tree7debee575bfdb7c2888614ecfe8edb3224cb66bb /static/styles.css
parent89ebed9500296180bf3b880b1e2aebe9ed7bc566 (diff)
static
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css61
1 files changed, 61 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..045f4da
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,61 @@
+@font-face {
+ font-family: EBGaramond;
+ src: url(/static/EBGaramond-VariableFont_wght.ttf) format('woff2-variations');
+ font-style: normal;
+}
+
+@font-face {
+ font-family: EBGaramond;
+ src: url(/static/EBGaramond-Italic-VariableFont_wght.ttf) format('woff2-variations');
+ font-style: italic;
+}
+
+body {
+ background: #fdf3f3;
+ color: DarkSlateGrey;
+ font-family: EBGaramond, serif;
+ font-size: large;
+}
+
+a {
+ color: #1a97bf;
+}
+
+a:hover {
+ color: #075d77;
+}
+
+.container {
+ margin: 1em;
+ max-width: 40em;
+}
+
+.title {
+ letter-spacing: -0.5px;
+ font-weight: bold;
+}
+
+div {
+ margin-bottom: 10px;
+}
+
+form {
+ border: 1px DarkSlateGrey solid;
+ padding: 10px;
+ padding-left: 25px;
+}
+
+.sep {
+ margin-left: 6px;
+ margin-right: 6px;
+}
+
+.ingredient {
+ display: inline-block;
+ margin-right: 5px;
+ margin-bottom: 5px;
+}
+
+button {
+ margin-right: 10px;
+}