diff options
author | Adam Hovorka <[email protected]> | 2020-04-27 00:24:34 -0600 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2020-04-27 00:24:34 -0600 |
commit | 946137054dfd23f2ae7ddf77a1cbd4a4b9486054 (patch) | |
tree | fd004abd00dd6899264a939ad5c86720035a0fe1 /style.css | |
parent | 5196850658003808a785aa05a89ad6746920a510 (diff) |
Add stats / word count box
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); } |