Jump to content

MediaWiki:User:Redk1tty.css: Difference between revisions

From OkayXairen Wiki
Created page with "@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap'); * { font-family: "Ubuntu"; } html.skin-theme-clientpref-night { --background-color-base: rgb(18, 19, 20); --color-base: #eeeeee; } a { color: rgb(254, 24, 89); background-color: rgba(254, 24, 89, 0.33); text-decoration: none; font-weight: normal; border: thin solid transparent; font-weight: 600; tr..."
 
No edit summary
Line 2: Line 2:


* {
* {
     font-family: "Ubuntu";
     font-family: "Ubuntu" !important;
}
}
html.skin-theme-clientpref-night {
html.skin-theme-clientpref-night {
Line 9: Line 9:
}
}
a {
a {
     color: rgb(254, 24, 89);
     color: rgba(254, 24, 89,0.8) !important;
    background-color: rgba(254, 24, 89, 0.33);
    text-decoration: none;
    font-weight: normal;
    border: thin solid transparent;
    font-weight: 600;
    transition: 0.5s cubic-bezier(0,0.8,0,1);
}
}
a:hover {
a:hover {
     color: (var(--background-color-base);
     color: rgba(254, 24, 89,1) !important;
    background-color: rgb(254, 24, 89);
    border: thin solid rgb(254, 24, 89);
    transition: none;
}
}

Revision as of 23:15, 11 March 2026

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    font-family: "Ubuntu" !important;
}
html.skin-theme-clientpref-night {
    --background-color-base: rgb(18, 19, 20);
    --color-base: #eeeeee;
}
a {
    color: rgba(254, 24, 89,0.8) !important;
}
a:hover {
    color: rgba(254, 24, 89,1) !important;
}