You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
610 B
32 lines
610 B
/* Set the main background color to black */
|
|
body {
|
|
background-color: black;
|
|
color: white; /* Ensure text is visible */
|
|
}
|
|
|
|
/* Set other elements you want to customize */
|
|
.md-nav, .md-header, .md-footer {
|
|
background-color: black;
|
|
}
|
|
|
|
.md-main__inner {
|
|
background-color: black;
|
|
}
|
|
|
|
/* Set a secondary color (red) for specific elements */
|
|
.md-nav__item:hover, .md-footer__inner, a {
|
|
background-color: red;
|
|
color: white; /* Ensure text is visible */
|
|
}
|
|
|
|
/* Further customization as needed */
|
|
|
|
.md-typeset__table {
|
|
min-width: 100%;
|
|
}
|
|
|
|
.md-typeset table:not([class]) {
|
|
display: table;
|
|
}
|
|
|