diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-09-19 15:33:11 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-09-19 15:33:11 +0530 |
commit | a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd (patch) | |
tree | 5b8f407dbb7e9d1ab2106ac0cc8564897e7a2098 /youtube/static/message_box.css | |
download | yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.tar.gz yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.tar.bz2 yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.zip |
Diffstat (limited to 'youtube/static/message_box.css')
-rw-r--r-- | youtube/static/message_box.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/youtube/static/message_box.css b/youtube/static/message_box.css new file mode 100644 index 0000000..72f4453 --- /dev/null +++ b/youtube/static/message_box.css @@ -0,0 +1,12 @@ +#message-box { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + border-style: outset; + padding: 20px; + background-color: var(--background); + opacity: 0; + transition-property: opacity; + transition-duration: 0.3s; +} |