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
|
abbr {
font-size: 80%;
}
/* Content */
div.content-wrapper {
background-color: blue;
padding-top: 20px;
padding-bottom: 20px;
}
div.topic {
border: none;
}
p.admonition-title {
font-weight: bold;
background-color: aqua;
border: #000000;
}
.alert-warning {
color: #333;
}
.alert-info {
color: #333;
}
div.note {
background-color: white;
background-image: none;
}
div.warning {
background-color: white;
background-image: none;
border: 2px solid orange;
}
div.signatures {
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
background-image: none;
background-color: #f5f5f5;
border: 1px solid #ccc;
color: #333;
font-size: 13px;
word-break: keep-all;
hyphens: none;
}
code.literal {
color: #404040;
background-color: #e8e8e8;
font-size: 100%
}
|