1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-26 21:20:48 +02:00
crowbook/guide/colours.css

67 lines
868 B
CSS
Raw Permalink Normal View History

2016-10-06 23:04:33 +02:00
/* Colours for the navigation menu (toc) */
nav {
2016-10-07 00:24:24 +02:00
background: #181818;
color: #cdd4da;
2016-12-11 20:03:44 +01:00
border-right-color: #cdd4da;
2016-10-07 00:24:24 +02:00
}
nav {
border-right: solid thin #cdd4da;
2016-10-06 23:04:33 +02:00
}
#nav a:link {
2016-10-07 00:24:24 +02:00
color: #cdd4da;
2016-10-06 23:04:33 +02:00
}
#nav a:visited {
2016-10-07 00:24:24 +02:00
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;
2016-10-06 23:04:33 +02:00
}
/* Colours for top and footer */
#top {
2016-10-07 00:24:24 +02:00
background-color: #cdd4da;
color: #181818;
2016-10-06 23:04:33 +02:00
}
footer {
2016-10-07 00:24:24 +02:00
background-color: #cdd4da;
color: #181818;
2016-10-06 23:04:33 +02:00
}
footer a, #top a {
2016-10-07 00:24:24 +02:00
color: #040C62;
2016-10-06 23:04:33 +02:00
}
footer a:hover, #top a:hover {
2016-10-07 00:24:24 +02:00
color: #00A8F6;
2016-10-06 23:04:33 +02:00
}
/* Additional elements */
/* Grammar error */
.grammar-error {
color: red;
text-decoration-line: underline;
text-decoration-style: double;
2016-10-06 23:04:33 +02:00
}