ryujinx/docs/stylesheets/extra.css

52 lines
908 B
CSS
Raw Normal View History

2024-10-03 23:58:59 +00:00
:root {
2024-10-05 23:06:07 +00:00
--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;
}
2024-10-11 22:37:25 +00:00
/* Override the banner color in drawer (mobile) */
.md-nav--primary .md-nav__title[for="__drawer"] {
background-color: #001e23;
}
2024-10-05 23:06:07 +00:00
/* 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;
2024-10-03 23:58:59 +00:00
}
2024-10-12 00:10:32 +00:00
/* Add margin to images so they aren't too close to the text */
.md-content__inner img
{
margin-top: 1em;
margin-bottom: 1em;
}