Elia el Lazkani
d98a1c13bf
- Fixing note box colors - Removing source code link from pages, the blog is already open sourced
25 lines
640 B
CSS
25 lines
640 B
CSS
.literal {
|
|
border: 1px solid #ccc;
|
|
color: #999;
|
|
background-color: #272822;
|
|
border-radius: 3px;
|
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
div.note {
|
|
word-wrap: break-word;
|
|
background-color: rgb(34,34,34);
|
|
border: 1px solid #007053;
|
|
}
|
|
|
|
div.admonition, div.hint, div.important, div.note, div.tip, div.sidebar, div.attention, div.caution, div.danger, div.error, div.warning, div.system-message {
|
|
background-color: rgb(34,34,34);
|
|
}
|
|
|
|
div.note p.admonition-title {
|
|
background-color: #007053 !important;
|
|
border-bottom: 1px solid #007053;
|
|
}
|