-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (52 loc) · 881 Bytes
/
Copy pathstyles.css
File metadata and controls
66 lines (52 loc) · 881 Bytes
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* General styles */
html {
font-family: Helvetica, Arial, sans-serif;
font-size: 10px;
}
h2 {
font-size: 2rem;
}
ul,ol,dl,p {
font-size: 1.5rem;
}
li, p {
line-height: 1.5;
}
/* Unordered list styles */
ul {
padding-left: 2rem;
list-style-type: none;
}
ul li {
padding-left: 2rem;
background-image: url(star.svg);
background-position: 0 0;
background-size: 1.6rem 1.6rem;
background-repeat: no-repeat;
}
/* Ordered list styles */
ol {
list-style-type: upper-roman;
}
/* Description list styles */
dd, dt {
line-height: 1.5;
}
dt {
font-weight: bold;
}
.page {
border-radius: 1rem;
padding: 1em;
margin: 1em;
box-shadow: 8px 8px 20px 4px rgba(0.1,0.1,0.1,0.15);
}
.cookbook {
background: rgba(253, 248, 209, 0.8);
}
.notebook {
background: rgba(254, 203, 255, 0.8);
}
.sciencebook {
background: rgba(184, 247, 254, 0.8);
}