MediaWiki:Vector.css: различия между версиями
иногда проще всего всё дропнуть Метка: очистка |
определил шрифт |
||
Строка 1: | Строка 1: | ||
@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=PT+Mono&display=swap'); | |||
/* Переменные цветов */ | |||
/* Светлая тема (по умолчанию)*/ | |||
/* Светлая тема отстой */ | |||
/* Тёмная */ | |||
@media (prefers-color-scheme: dark){ | |||
:root{ | |||
--backgroundColor: black; | |||
--textColor: rgb(220, 220, 220); | |||
--linkColor: yellow; | |||
--linkUnderlineColor: rgba(255, 255, 255, 0.33); | |||
--linkOutColor: rgb(112, 255, 200); | |||
--linkNewColor: rgb( 255, 122, 49); | |||
--hoverColor: rgb(255, 255, 255); | |||
--articleActionColorUnselected: rgba(255, 255, 0, 0.25); | |||
--articleActionColorSelected: rgba(255, 255, 0, 0.75); | |||
--leftBackgroundColor: rgba(253, 234, 168, 0.25); | |||
--leftTextColor: rgb(220, 220, 220); | |||
--leftLinkColor: rgb(220, 220, 220); | |||
--tableBackgroundColor: rgb(90, 90, 90); | |||
--tableCaptionBackgroundColor: rgb( 120, 120, 150); | |||
--codeBackgroundColor: rgba(200, 200, 220, 0.5); | |||
--messageSuccessBG: rgb(112, 155, 255); | |||
} | |||
} | |||
/* Глобальные настройки */ | |||
/* Шрифт */ | |||
body{ | |||
font-family: Istok Web, sans-serif; | |||
} |
Версия от 22:28, 29 января 2024
@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=PT+Mono&display=swap');
/* Переменные цветов */
/* Светлая тема (по умолчанию)*/
/* Светлая тема отстой */
/* Тёмная */
@media (prefers-color-scheme: dark){
:root{
--backgroundColor: black;
--textColor: rgb(220, 220, 220);
--linkColor: yellow;
--linkUnderlineColor: rgba(255, 255, 255, 0.33);
--linkOutColor: rgb(112, 255, 200);
--linkNewColor: rgb( 255, 122, 49);
--hoverColor: rgb(255, 255, 255);
--articleActionColorUnselected: rgba(255, 255, 0, 0.25);
--articleActionColorSelected: rgba(255, 255, 0, 0.75);
--leftBackgroundColor: rgba(253, 234, 168, 0.25);
--leftTextColor: rgb(220, 220, 220);
--leftLinkColor: rgb(220, 220, 220);
--tableBackgroundColor: rgb(90, 90, 90);
--tableCaptionBackgroundColor: rgb( 120, 120, 150);
--codeBackgroundColor: rgba(200, 200, 220, 0.5);
--messageSuccessBG: rgb(112, 155, 255);
}
}
/* Глобальные настройки */
/* Шрифт */
body{
font-family: Istok Web, sans-serif;
}