no center float
[myslice.git] / plugins / messages / static / css / messages.css
1 /* the buttons area */
2 div.messages-buttons { padding: 0px 20px 8px 50px; }
3 div.messages-buttons>input { margin: 3px 10px 3px 20px ; }
4 div.messages-buttons>span { font-weight: bold; }
5
6 /* layout of messages per se */
7 ul.messages {
8     list-style-type: none;
9     /* a trick so that long lines wrap nicely */
10     padding-left: 280px;
11     text-indent: -280px;
12
13 }
14 span.messages-date { 
15     font-size: 75%;
16     width: 200px ;
17     float: left;
18     padding: 0px 10px 0px 10px;
19 }
20
21 span.messages-level {
22     font-size: 90%;
23     float: left;
24     width: 40px;
25 }
26
27 /* someone please feel free to pick a better set of colors */
28 li.fatal { background-color: CornflowerBlue;}
29 li.error { background-color: Coral; }
30 li.warning { background-color: Gold; }
31 li.info { background-color: LightGreen; }
32 li.debug { background-color: Azure; } 
33
34