Skip to content
Snippets Groups Projects
Commit afb411f1 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

some style fixes

darcs-hash:20051106171939-7ad00-628f4bed48b395e3087058e47c30c80d5d807046.gz
parent 3ff230f7
No related branches found
No related tags found
No related merge requests found
/**
* Basic styles. These styles are needed for basic DokuWiki functions
* regardless of the used template. Templates can override them of course
*/
div.clearer {clear: both; line-height: 0; height: 0;}
div.error{
background: #fcc url(../images/error.png) 0.5em 0px no-repeat;
color: #000;
border-bottom: 1px solid #faa;
font-size: 90%;
margin: 0px;
......@@ -10,6 +16,7 @@ div.error{
div.info{
background: #ccf url(../images/info.png) 0.5em 0px no-repeat;
color: #000;
border-bottom: 1px solid #aaf;
font-size: 90%;
margin: 0;
......@@ -18,12 +25,30 @@ div.info{
div.success{
background: #cfc url(../images/success.png) 0.5em 0px no-repeat;
color: #000;
border-bottom: 1px solid #afa;
font-size: 90%;
margin: 0;
padding-left: 3em;
}
/* image alignment */
img.medialeft {
float: left;
}
img.mediaright {
float: right;
}
img.mediacenter {
display: block;
margin-left: auto;
margin-right: auto;
}
/* syntax highlighting code */
.code .br0 { color: #66cc66; }
.code .co1 { color: #808080; font-style: italic; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment