1
0
Fork 0
mirror of https://github.com/lise-henry/crowbook synced 2024-05-23 13:16:16 +02:00
crowbook/guide/colors.css
Elisabeth Henry 2e92185272 Improve docs for maintainability, update highlightjs and replace colours with colors
Merge patch from jrappen, see https://github.com/lise-henry/crowbook/pull/64
+ mark "html.css.colours" as deprecated (but still a working alias)
2019-12-15 23:42:00 +01:00

70 lines
866 B
CSS

/* Colors for the navigation menu (toc) */
nav {
background: #181818;
color: #cdd4da;
border-right-color: #cdd4da;
}
nav {
border-right: solid thin #cdd4da;
}
#nav a:link {
color: #cdd4da;
}
#nav a:visited {
color: #cdd4da;
}
a:link {
color: #3399ff;
}
a:visited {
color: #0066cc;
}
a:hover {
color: #66b3ff;
}
body {
background-color: #181818;
color: #cdd4da;
}
pre,
code {
background-color: #1d1f21;
}
/* Colors for top and footer */
#top {
background-color: #cdd4da;
color: #181818;
}
footer {
background-color: #cdd4da;
color: #181818;
}
footer a,
#top a {
color: #040C62;
}
footer a:hover,
#top a:hover {
color: #00A8F6;
}
/* Additional elements */
/* Grammar error */
.grammar-error {
color: red;
text-decoration-line: underline;
text-decoration-style: double;
}