1
0
Fork 0
mirror of https://github.com/lise-henry/crowbook synced 2024-05-23 13:16:16 +02:00
crowbook/guide/colours.css
2017-01-06 20:19:50 +01:00

67 lines
868 B
CSS

/* Colours 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;
}
/* Colours 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;
}