Dark mode for UniOvi's intranet.
campusvirtual.uniovi.es by margual56
Details
Authormargual56
LicenseNo License
Categorycampusvirtual.uniovi.es
Created
Updated
Size1.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This justs applies an inversion filter and then applies a couple custom colors to some elements that otherwise look like crap.
Source code
/* ==UserStyle==
@name campusvirtual.uniovi.es
@version 20211101.16.50
@namespace userstyles.world/user/margual56
@description Dark mode for UniOvi's intranet.
@author margual56
@license No License
==/UserStyle== */
@-moz-document domain("campusvirtual.uniovi.es") {
body {
overflow-x: hidden;
}
img:not(userpicture),
html {
-webkit-filter: invert(90%) hue-rotate(180deg)!important;
filter: invert(90%) hue-rotate(180deg)!important;
background: rgb(25, 25, 25)!important;
}
article.markdown-body {
color: #242424;
background-color: white;
width: 100%;
}
div#wrapper {
background-color: white;
}
#page-wrapper #page #page-content {
background-color: #fff;
}
footer,
.bg-dark {
background-color: #f8f8f8 !important;
color: black !important;
}
footer a {
color: blue !important;
}
.yui3-widget-bd > h3 {
font-size: 1rem !important;
}
}