aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorJoris2020-02-02 16:32:03 +0100
committerJoris2020-02-02 16:32:03 +0100
commite1d2035b537c273c376acb1906d72f7c09d3a42d (patch)
tree06a6b85f9793d1e5039e856d85597e12840158ee /static
parent0ce8744897b9aa13ea568a6985da9570e4aca90b (diff)
downloadcooking-e1d2035b537c273c376acb1906d72f7c09d3a42d.tar.gz
cooking-e1d2035b537c273c376acb1906d72f7c09d3a42d.tar.bz2
cooking-e1d2035b537c273c376acb1906d72f7c09d3a42d.zip
Allow to check recipe steps
Diffstat (limited to 'static')
-rw-r--r--static/main.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css
index 5aa2008..e19d1ac 100644
--- a/static/main.css
+++ b/static/main.css
@@ -2,6 +2,7 @@
--color-title: rgb(113, 68, 30);
--color-link: rgb(13, 13, 81);
--color-number: rgb(230, 230, 230);
+ --color-completed: #58b058;
--base-font-size: 18px;
}
@@ -61,6 +62,7 @@ body {
.g-Page__Recipes {
list-style-type: none;
+ padding-left: 1rem;
}
.g-Page__Recipe {
@@ -134,3 +136,11 @@ h2 {
width: 1.5rem;
text-align: center;
}
+
+.g-Recipe ol > li:hover {
+ cursor: pointer;
+}
+
+.g-Recipe ol > li.g-Recipe__Completed::before {
+ background-color: var(--color-completed);
+}