From ec97706d2c277e083405a6d8910b842104ac3190 Mon Sep 17 00:00:00 2001 From: Jan-Lukas Pagel Date: Tue, 21 Mar 2023 11:32:00 +0100 Subject: [PATCH] add help button in right corner --- main.css | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/main.css b/main.css index f21ecd0..e58aeb7 100644 --- a/main.css +++ b/main.css @@ -29,4 +29,24 @@ h1 { background-color: lightgray; border-radius: 5px; padding: 5px 10px 5px 10px; -} \ No newline at end of file +} + +#help-div { + z-index: 10; + position: fixed; + bottom: -4px; + right: 10px; +} + +#help { + margin-bottom: 10px; + background-color: aqua; + border-radius: 100%; + width: 60px; + height: 60px; + text-align: center; +} + +#help .material-symbols-outlined { + font-size: 40px; +}