mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-01 22:20:53 +00:00
52 lines
908 B
CSS
52 lines
908 B
CSS
:root {
|
|
--md-primary-fg-color:#ff5f55;
|
|
}
|
|
|
|
/* Header text color */
|
|
.md-header__title {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Header repo link color */
|
|
.md-source__repository {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Change color of the icons in the dark/light mode toggle */
|
|
.md-header .md-icon svg {
|
|
fill: #ffffff;
|
|
}
|
|
|
|
/* Override the banner color */
|
|
.md-header {
|
|
background-color: #001e23;
|
|
border-bottom: 1px solid #970b0b;
|
|
}
|
|
|
|
/* Override the banner color in drawer (mobile) */
|
|
.md-nav--primary .md-nav__title[for="__drawer"] {
|
|
background-color: #001e23;
|
|
}
|
|
|
|
/* Override the tab colors */
|
|
.md-tabs {
|
|
background-color: #001e23;
|
|
}
|
|
|
|
/* Tab links styling */
|
|
.md-tabs__list {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Hover effect for all links */
|
|
a:hover,
|
|
a:focus {
|
|
color: #01c4e5 !important;
|
|
}
|
|
|
|
/* Add margin to images so they aren't too close to the text */
|
|
.md-content__inner img
|
|
{
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
} |