-
Notifications
You must be signed in to change notification settings - Fork 22
/
styles.css
45 lines (37 loc) · 879 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto');
body,
.book.font-family-1 {
font-family: "Roboto", Helvetica, Arial, sans-serif;
}
/* link colour */
.book .book-summary ul.summary li a:hover, .book .book-summary ul.summary li.active>a,
.book .book-body .page-wrapper .page-inner section.normal a:link {
color: #0074d9;
}
.book .book-body .page-wrapper .page-inner section.normal a:visited {
color: #b10dc9;
}
/* exercise boxes */
.exercise {
background-color: #bbf7f5 !important;
}
.exercise h2 {
padding-left: 25px;
}
/* tip and warning boxes */
.note, .warning {
padding: 1em 1em 1em 6em;
background: #dededd 1em center/4em no-repeat;
border-radius: 2px;
}
.note {
background-image: url("images/note.png");
}
.warning {
background-image: url("images/warning.png");
}
/* code boxes */
pre {
border-radius: 3px;
}