diff options
Diffstat (limited to 'youtube/static/shared.css')
-rw-r--r-- | youtube/static/shared.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube/static/shared.css b/youtube/static/shared.css index 72d290a..2393bef 100644 --- a/youtube/static/shared.css +++ b/youtube/static/shared.css @@ -107,6 +107,18 @@ body{ flex-grow: 1; padding-bottom: 20px; } + #message-box{ + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + border-style: outset; + padding: 20px; + background-color: var(--interface-color); + opacity: 0; + transition-property: opacity; + transition-duration: 0.3s; + } .dropdown{ @@ -225,7 +237,8 @@ body{ .item .title{ min-width: 0; - max-height:3.6em; + line-height:1.25em; + max-height:3.75em; overflow:hidden; color: var(--text-color); |