-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
61 lines (50 loc) · 944 Bytes
/
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
52
53
54
55
56
57
58
59
caption {
color: #777;
margin-top: 20px;
}
body{
text-align: justify;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.references{
text-indent: -1em;
margin-left: 1em;
text-align: left;
}
.tarefa, .dica, .vcsabia, .importante, .note{
background: #f5f5f5 5px center/3em no-repeat;
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
border-style: solid;
border-radius: 10px;
border-width: 20px 10px 2px 5px;
}
.vcsabia {
background-image: url("figures/curiosity.png");
border-color: #db8121;
}
.dica {
background-image: url("figures/tip.png");
border-color: #2963cf;
}
.tarefa {
background-image: url("figures/head.png");
border-color: #A93226;
}
.note {
background-image: url("figures/note.png");
border-color: #3fd62b;
}
.importante {
background-image: url("figures/important.png");
border-color: #3fd62b;
}