aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/showHiddenChannels/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/showHiddenChannels/style.css')
-rw-r--r--src/plugins/showHiddenChannels/style.css78
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;
+}