Skip to content
Snippets Groups Projects
Commit 44372f8a authored by Greg Wilson's avatar Greg Wilson
Browse files

Merging CSS

parents 75c991e6 4b841b34
Branches
Tags
No related merge requests found
/* Headings */
h1, h2, h3, h4, h5, h6 {
color: rgb(03,03,03);
}
h1, h2 {
margin-top: 40px;
margin-bottom: 10px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: inherit;
}
/* Chapter titles. */
div.chapter h2 {
text-align: center;
font-style: italic;
}
/* Objectives and key points */
.objectives, .keypoints {
background-color: azure;
}
/* Things to fix. */
.fixme {
text-decoration: underline;
color: darkred;
background-color: lightgray;
}
/* Putting shadows around things. */
.shadow {
-moz-box-shadow: 0 0 30px 5px #999;
-webkit-box-shadow: 0 0 30px 5px #999;
box-shadow: 0 0 30px 5px #999;
}
/* Things to understand (lead-in to sections in book). */
.understand {
background-color: lightyellow;
}
/* Block quotations. */
blockquote {
margin: 1em;
padding: .7em;
width: 90%;
}
/* Citation for testimonial quote. */
blockquote.testimonial cite {
font-style: italic;
}
/* Main body of pages. */
body {
background: #BEC3C6;
......@@ -150,6 +206,11 @@ blockquote p {
font-weight: inherit;
line-height: inherit;
}
blockquote h2{
margin-top: 0px;
}
/* readability: darken the alert colour for contrast with background */
.alert {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment