From e1d2035b537c273c376acb1906d72f7c09d3a42d Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 2 Feb 2020 16:32:03 +0100 Subject: Allow to check recipe steps --- static/main.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'static/main.css') 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); +} -- cgit v1.2.3