collab/public/stylesheets/style.css

57 lines
692 B
CSS
Raw Normal View History

2010-03-04 22:42:09 +00:00
* {
margin:0;
padding:0;
}
2010-03-05 06:48:00 +00:00
div.flash {
width:1000px;
margin-left:auto;
margin-right:auto;
padding:5px;
background-color:white;
margin-top:20px;
}
div#flash_error {
2010-03-04 06:22:45 +00:00
color:red;
2010-03-05 06:48:00 +00:00
border:red 5px solid;
2010-03-04 06:22:45 +00:00
}
2010-03-05 06:48:00 +00:00
div#flash_notice {
2010-03-04 06:22:45 +00:00
color:blue;
2010-03-05 06:48:00 +00:00
border:blue 5px solid;
2010-03-04 06:22:45 +00:00
}
2010-03-05 06:48:00 +00:00
div#flash_success {
2010-03-04 06:22:45 +00:00
color:green;
2010-03-05 06:48:00 +00:00
border:green 5px solid;
2010-03-04 22:42:09 +00:00
}
table.task_list tr.odd{
background-color:#ddd;
}
table.task_list tr.even{
2010-03-05 06:48:00 +00:00
}
body {
background-color:gray;
}
div#header {
width:1000px;
margin-left:auto;
margin-right:auto;
font-size:24;
font-weight:bold;
}
div#wrapper {
margin-left:auto;
margin-right:auto;
width:1000px;
margin-top:30px;
background-color:white;
2010-03-04 06:22:45 +00:00
}