forked from andreashandel/IDEMAbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidemabook.css
85 lines (72 loc) · 1.3 KB
/
idemabook.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@charset "utf-8";
/* template/styling for DSAIDE book
* Last Modified: 2017-06-26
*
-------------------------------------------------------------------------------- */
/* Color Glossary for easy changing of colors later
* grey: #403c3d
* dark grey: #333
* light grey: #ccc
* near white: #f9f9f9
* light blue: #3388CC
* blue: #005599
------------------------------------------------ */
/* Image
---------------*/
img {
max-width: 80%;
padding: 5px;
}
.image {
display: inline-block;
margin-top: 5px;
margin-left: 5px;
margin-right: 5px;
max-width: 80%;
padding: 5px;
text-align: center;
/* Visual */
border-radius: 5px;
border: 1px solid #ccc; /* light grey */
}
.figure {
margin: auto;
max-width: 80%;
padding: 0;
text-align: center;
/* Visual */
border-radius: 5px;
border: 1px solid #ccc; /* light grey */
}
.caption {
padding: 0;
margin: auto;
margin-bottom: 6px;
}
/* My additions
-------------------- */
#myadvancedbox
{
border: 10px solid #cc6600;
padding: 10px;
border-radius: 5px;
font-size: smaller;
}
#mynotebox
{
border: 10px solid blue;
padding: 10px;
border-radius: 5px;
font-size: smaller;
}
#myexamplebox
{
border: 10px solid #cfd7e0;
padding: 10px;
border-radius: 5px;
font-size: smaller;
}
#mytextbox
{
border: 10px solid #8e00cc;
}