38 lines
772 B
CSS
38 lines
772 B
CSS
.plugin_note {
|
|
margin: 2em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 70% !important;
|
|
min-height: 40px;
|
|
clear: both;
|
|
text-align: justify;
|
|
vertical-align: middle;
|
|
border-collapse: collapse;
|
|
padding: 15px 20px 15px 80px;
|
|
background-position: 20px 50%;
|
|
background-repeat: no-repeat;
|
|
-moz-border-radius: 20px;
|
|
-khtml-border-radius: 20px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.noteclassic {
|
|
/*border: 1px solid #99D;*/
|
|
background-image: url(images/bw/note.png);
|
|
}
|
|
|
|
.noteimportant {
|
|
/*border: 1px solid #ff0;*/
|
|
background-image: url(images/bw/important.png);
|
|
}
|
|
|
|
.notewarning {
|
|
/*border: 1px solid #d99;*/
|
|
background-image: url(images/bw/warning.png);
|
|
}
|
|
|
|
.notetip {
|
|
/*border: 1px solid #9d9;*/
|
|
background-image: url(images/bw/tip.png);
|
|
}
|