From 4e69832f8e825090a32d93c3153d50b506a3de86 Mon Sep 17 00:00:00 2001 From: William Daniau Date: Mon, 14 Oct 2019 11:26:54 +0200 Subject: [PATCH] Ajout du style pour le upButton --- templates/html/common/zim-style.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/templates/html/common/zim-style.css b/templates/html/common/zim-style.css index a010549..507dc84 100644 --- a/templates/html/common/zim-style.css +++ b/templates/html/common/zim-style.css @@ -63,4 +63,35 @@ font-size:small; } + #upBtn { + display: none; + position: fixed; + bottom: 20px; + right: 30px; + z-index: 99; + font-size: 18px; + border: none; + outline: none; + background-color: #7777; + color: white; + cursor: pointer; + padding: 15px; + border-radius: 4px; + } + + #upBtn::before { + border-style: solid; + border-width: 0.25em 0.25em 0 0; + content: ''; + display: inline-block; + height: 0.45em; + left: 0.15em; + position: relative; + top: 0.15em; + transform: rotate(-45deg); + vertical-align: top; + width: 0.45em; + margin-left:-0.2em; + } + -- 2.16.4