diff options
author | Joris | 2020-02-02 16:32:03 +0100 |
---|---|---|
committer | Joris | 2020-02-02 16:32:03 +0100 |
commit | e1d2035b537c273c376acb1906d72f7c09d3a42d (patch) | |
tree | 06a6b85f9793d1e5039e856d85597e12840158ee /static | |
parent | 0ce8744897b9aa13ea568a6985da9570e4aca90b (diff) |
Allow to check recipe steps
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 10 |
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); +} |