69 lines
1.3 KiB
CSS
69 lines
1.3 KiB
CSS
/* iT Guys Standard Documentation Style */
|
|
|
|
/* Headers */
|
|
h1 {
|
|
color: #1478cf !important;
|
|
font-weight: 700 !important;
|
|
margin-bottom: 1.5rem !important;
|
|
}
|
|
|
|
h2 {
|
|
color: #1478cf !important;
|
|
border-bottom: 2px solid #1478cf;
|
|
padding-bottom: 0.5rem;
|
|
margin-top: 2rem !important;
|
|
}
|
|
|
|
h3 {
|
|
color: #333;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Dark mode adjustments for headers */
|
|
[data-md-color-scheme="slate"] h3 {
|
|
color: #e5e5e5;
|
|
}
|
|
|
|
/* Tables - Matching PDF style */
|
|
.md-typeset table:not([class]) {
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
overflow: hidden;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.md-typeset table:not([class]) th {
|
|
background-color: #1478cf;
|
|
color: white !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Button override */
|
|
.md-button {
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.md-button--primary {
|
|
background-color: #1478cf !important;
|
|
color: white !important;
|
|
}
|
|
|
|
/* Fix for the download button appearing inline */
|
|
.download-pdf-btn {
|
|
display: inline-block;
|
|
margin-bottom: 2rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Hiding "Made with Material" text node and link */
|
|
.md-copyright {
|
|
font-size: 0 !important; /* Hides "Made with" text */
|
|
}
|
|
|
|
.md-copyright__highlight {
|
|
font-size: 0.64rem !important; /* Restores size for our copyright */
|
|
display: inline-block;
|
|
}
|
|
|