summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--styles/websites/ChatGPT.css16
-rw-r--r--styles/websites/copilot-microsoft.css12
-rw-r--r--styles/websites/wikipedia.css76
3 files changed, 104 insertions, 0 deletions
diff --git a/styles/websites/ChatGPT.css b/styles/websites/ChatGPT.css
new file mode 100644
index 0000000..fb8b939
--- /dev/null
+++ b/styles/websites/ChatGPT.css
@@ -0,0 +1,16 @@
+@-moz-document domain("chatgpt.com") {
+ :root{
+ --main-surface-primary: rgba(0,0,0,0.1);
+ --sidebar-surface-primary: rgba(0,0,0,0.2)
+ }
+
+ .dark{
+ --sidebar-surface-tertiary: background: rgba(0,0,0,0.1) !important;
+ }
+ nav{
+ background: rgba(0,0,0,0.1);
+ }
+ .bg-token-message-surface{
+ background-color: rgba(0,0,0,0.2) !important;
+ }
+}
diff --git a/styles/websites/copilot-microsoft.css b/styles/websites/copilot-microsoft.css
new file mode 100644
index 0000000..aa1ef13
--- /dev/null
+++ b/styles/websites/copilot-microsoft.css
@@ -0,0 +1,12 @@
+@-moz-document domain("copilot.microsoft.com") {
+ * {
+ background: none !important;
+ }
+ .dark\:bg-midnight-750:is([data-theme="dark"] *){
+ background-color: rgb(29 36 57 / var(--tw-bg-opacity)) !important;
+ }
+ .dark\:before\:bg-midnight-800:is([data-theme="dark"] *)::before {
+ background-color: rgba(23,30,50,0.2) !important;
+ backdrop-filter: blur(512px);
+ }
+}
diff --git a/styles/websites/wikipedia.css b/styles/websites/wikipedia.css
new file mode 100644
index 0000000..e9daa1a
--- /dev/null
+++ b/styles/websites/wikipedia.css
@@ -0,0 +1,76 @@
+@-moz-document domain("wikipedia.org") {
+ @media screen {
+ html.skin-theme-clientpref-night {
+ --background-color-base: none;
+ --background-color-neutral: none;
+ --background-color-neutral-subtle: none;
+ --background-color-interactive-subtle: rgba(0,0,0,0.2)
+ }
+ }
+ table{
+ border-radius: 16px;
+ }
+ td{
+ background: rgba(0,0,0,0.1) !important;
+ }
+ body, html {
+ background: none !important;
+ color: white;
+ font-family: Ginto,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji" !important;
+ text-align: justify;
+ }
+ h1, h2, h3, h4, h5, h6 {
+ color: white;
+ }
+ .mw-page-container{background: none;}
+ .infobox, .hatnote{
+ border-radius: 12px;
+ }
+ .vector-dropdown-content{
+ backdrop-filter: blur(12px) !important;
+ background-color: rgba(0,0,0,0.5) !important;
+ color: white !important;
+ text-decoration: none !important;
+
+ }
+ .vector-pinned-container {
+ background-color: rgba(0,0,0,0.1);
+ border-radius: 12px;
+ }
+ .cdx-button:enabled.cdx-button--weight-quiet.cdx-button--action-progressive, .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-quiet.cdx-button--action-progressive{
+ color: white;
+ text-decoration: none;
+ background: rgba(0,0,0,0.1);
+ border-radius: 16px;
+ }
+ .vector-icon[class*="-progressive"]{
+ background-color: white;
+ }
+ .vector-menu-tabs .mw-list-item.selected a, a:where(:not([role="button"])){
+ color: white !important;
+ }
+
+ .vector-pinnable-header-toggle-button{
+ content: 'X' !important;
+ border-radius: 16px;
+ margin-top: 5px;
+ height: 23px;
+ color: white;
+ background: none;
+ right: 10px;
+ position: absolute;
+ }
+ .mwe-popups-containers::after{
+ background: rgba(0,0,0,1) !important;
+ backdrop-filter: blur(100px);
+ }
+ .infobox-subbox{
+ font-family: consolas;
+ }
+ .uls-menu, .uls-lcd {
+ background: rgba(0,0,0,0.3);
+ backdrop-filter: blur(64px) !important;
+ -webkit-backdrop-filter: blur(5px);
+ color: white;
+ }
+}