-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (46 loc) · 1.04 KB
/
style.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
46
47
48
49
50
51
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/* Part heading is left menu */
.text-start .menu-text {
font-weight: bold;
}
/* Floats for images */
.small_right, .small_left {
display: inline-block;
width: 25%;
max-width: 200px;
}
.small_right { float: right; margin: 0 0 1em 1em;}
.small_left { float: left; margin: 0 1em 1em 0;}
.small_right img, .small_left img { max-width: 100%; }
.medium_right, .medium_left {
display: inline-block;
width: 55%;
max-width: 440px;
}
.medium_left {float: left; margin: 1em 1em 1em 0;}
.medium_right {float: right; margin: 0 0 1em 1em;}
.medium_left img, .medium_right img{max-width: 100%;}
.large_right, .large_left {
display: inline-block;
width: 75%;
max-width: 600px;
}
.large_left {float: left; margin: 1em 1em 1em 0;}
.large_right {float: right; margin: 0 0 1em 1em;}
.large_left img, .large_right img{max-width: 100%;}
.hide-captions .figure-caption {
display: none;
}