summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-09-06 21:13:05 -0400
committerpommicket <pommicket@gmail.com>2023-09-06 21:13:05 -0400
commitb231aa7fd2eaf8c11bfc052fd5fea70699d2bb54 (patch)
tree821811ab2cfed728104b6acdc6c45bc9470f53c8 /style.css
parenta06deaf3c9397d4f6b1697c3333e6bf13309fcd1 (diff)
copy link
Diffstat (limited to 'style.css')
-rw-r--r--style.css35
1 files changed, 32 insertions, 3 deletions
diff --git a/style.css b/style.css
index 12f5986..78debd7 100644
--- a/style.css
+++ b/style.css
@@ -1,6 +1,7 @@
:root {
--color-text: #ddd;
--color-link: #8fc;
+ --color-bg: #000;
}
body {
@@ -10,7 +11,7 @@ body {
body,
dialog {
- background-color: black;
+ background-color: var(--color-bg);
color: var(--color-text);
}
@@ -223,14 +224,42 @@ summary {
#top-area {
vertical-align: middle;
font-weight: bold;
- font-size: 0.5cm;
+ font-size: 1.2em;
}
#title-icon {
- height: 1cm;
+ height: 1.5em;
}
#creation-buttons {
margin-top: 0.2em;
}
+#link-creation {
+ position: relative;
+}
+
+@keyframes copied-notice-animation {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ visibility: hidden;
+ }
+}
+
+#link-creation #copied-notice {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 7em;
+ color: #0f0;
+ border: 1px solid #0f0;
+ pointer-events: none;
+ padding: 3px;
+ background: var(--color-bg);
+ visibility: hidden;
+ animation-duration: 3s;
+ animation-fill-mode: forwards;
+}
#resolution-form input[type='number'] {
width: 4em;
}