diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-02-01 08:11:05 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 12:11:05 +0100 |
commit | 369d179bbf67d34fc4d5f8312d19a106f3552373 (patch) | |
tree | 54849a5a410a00201f5a5ccd2803f31c6fb9475a /src/plugins/showHiddenChannels/style.css | |
parent | 8f4e8d0a9bd29b59cd9ea4e3228fd1b3e73fbfd9 (diff) | |
download | Vencord-369d179bbf67d34fc4d5f8312d19a106f3552373.tar.gz Vencord-369d179bbf67d34fc4d5f8312d19a106f3552373.tar.bz2 Vencord-369d179bbf67d34fc4d5f8312d19a106f3552373.zip |
ShowHiddenChannels: New screen for showing hidden channels (#460)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/showHiddenChannels/style.css')
-rw-r--r-- | src/plugins/showHiddenChannels/style.css | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/plugins/showHiddenChannels/style.css b/src/plugins/showHiddenChannels/style.css new file mode 100644 index 0000000..73957ef --- /dev/null +++ b/src/plugins/showHiddenChannels/style.css @@ -0,0 +1,78 @@ +.shc-lock-screen-container { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; +} + +.shc-lock-screen-container > * { + margin: 5px; +} + +.shc-lock-screen-logo { + width: 180px; + height: 180px; +} + +.shc-lock-screen-heading-container { + display: flex; + flex-direction: row; + align-items: center; +} + +.shc-lock-screen-heading-container > * { + margin: inherit; +} + +.shc-lock-screen-heading-nsfw-icon > path { + fill: var(--text-normal); + fill-rule: evenodd; +} + +.shc-lock-screen-topic-container { + color: var(--text-normal); + background-color: var(--background-secondary); + border-radius: 5px; + padding: 5px; + max-width: 70vw; +} + +.shc-lock-screen-tags-container { + background-color: var(--background-secondary); + border-radius: 5px; + padding: 5px; + max-width: 70vw; +} + +.shc-lock-screen-tags-container > * { + margin: inherit; +} + +.shc-lock-screen-tags-container > [class^="tags"] { + flex-wrap: wrap; +} + +.shc-evenodd-fill-current-color { + fill-rule: evenodd; + fill: currentcolor; +} + +.shc-hidden-channel-icon { + margin-left: 6px; + z-index: 0; + cursor: not-allowed; +} + +.shc-lock-screen-default-emoji-container { + display: flex; + flex-direction: row; + align-items: center; +} + +.shc-lock-screen-default-emoji-container > [class^="emojiContainer"] { + background-color: var(--background-secondary); + border-radius: 8px; + padding: 3px 4px; + margin-left: 5px; +} |