diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -99,6 +99,7 @@ div.material-icons { html.read-only #open { display: none; } html.read-only #save { display: none; } +html.read-only #stats { display: none; } html.read-only .edit-btn { display: none; } html.read-only #disable-edit { display: none; } html:not(.read-only) #enable-edit { display: none; } @@ -266,8 +267,15 @@ section textarea:focus { content: "◈"; /* ◆ ◇ ◈ */ } +#stats { + padding: 1em; + font-size: 16px; + border-radius: 6px; + border: 1px solid var(--border); + background-color: var(--selbg); +} + #unreachable { - font-size: 14px; - font-style: oblique; + font-weight: 600; color: var(--red); } |