summaryrefslogtreecommitdiffstats
path: root/static/styles.css
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-09-20 12:15:57 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-09-20 12:15:57 -0700
commitb8aec40bdc5cb5a5703113a6a89298d20a2cd896 (patch)
tree2236cce971e3dfb02def9a340c655f69f96eeb9d /static/styles.css
parent4f374aedfc0b70f1472fa357ac3d17ccecf70aff (diff)
downloadroseh.moe-b8aec40bdc5cb5a5703113a6a89298d20a2cd896.tar.zst
Add support for a private notepad
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 00e6d59..9e7d347 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -40,3 +40,36 @@ a:link {
a:visited {
color: #a02090;
}
+
+textarea {
+ flex: 1 1 auto;
+ padding: 40px;
+ resize: none;
+ background: #f5f5f5;
+ outline: none;
+ border: 5px solid #ff69b4;
+ border-radius: 15px;
+ box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
+ font-size: 1.5em;
+}
+
+div.save-indicator-container {
+ position: absolute;
+ left: calc(100vw - 150px);
+ top: 0;
+ height: 50px;
+ display: flex;
+ align-items: center;
+}
+
+div.content-container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100svw;
+ height: 100svh;
+ margin: 0;
+ box-sizing: border-box;
+ padding: 50px;
+ display: flex;
+}