1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-02 16:58:30 +00:00

Add the support for important admonitions

This commit is contained in:
Guillaume Ayoub 2011-09-11 11:52:27 +02:00
parent aedf681eb7
commit cfa0b1f7cf

View file

@ -207,13 +207,23 @@ article {
padding: 20px;
}
.note {
background:rgba(78, 154,6, 0.1);
border: 1px dotted #4e9a06;
.important, .note {
border-radius: 3px;
font-size: 0.9em;
margin: 1em 10%;
padding: 2px 15px;
}
.important {
background:rgba(180, 0, 0, 0.1);
border: 1px dotted #a40000;
}
.note {
background:rgba(78, 154, 6, 0.1);
border: 1px dotted #4e9a06;
}
.footnote {
font-size: 0.8em;
opacity: 0.5;
@ -249,6 +259,7 @@ article {
pre {
background: rgba(46, 52,54, 0.9);
border-radius: 3px;
margin: 1em 2%;
padding: 15px;
}