collab/public/stylesheets/style.css

117 lines
1.2 KiB
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
2010-03-06 08:00:02 +00:00
h1 {
2010-03-15 15:47:32 +00:00
margin:10px
}
h2 {
margin:5px;
2010-03-06 08:00:02 +00:00
}
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-15 15:47:32 +00:00
div#flash_failure{
color:red;
border:red 5px solid;
}
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
}
2010-03-15 15:47:32 +00:00
div#content {
padding:10px;
}
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-06 08:00:02 +00:00
}
2010-03-15 15:47:32 +00:00
/** Projects **/
div#project_right {
width:30%;
float:right;
}
div#project_tasks {
float:left;
width:60%;
text-align:center;
}
div.project_user_info a{
font-size:20px;
}
div#post_list {
border:1px solid #ccc;
margin-top:10px;
}
div.post {
padding:5px;
}
table.task_list tr {
text-align:left;
}
table.task_list tr td {
padding:5px;
}
table.task_list tr th {
padding:10px;
}
/** Tasks **/
div#task_description {
}