App block is working with full design now

This commit is contained in:
Matthew Fu 2011-11-20 00:03:02 +08:00
parent e594242dba
commit e4dc5bd107
78 changed files with 52 additions and 27 deletions

View File

@ -1,6 +0,0 @@
.bundle/
log/*.log
pkg/
test/dummy/db/*.sqlite3
test/dummy/log/*.log
test/dummy/tmp/

View File

@ -1,21 +0,0 @@
.preview h2 {
font-size: large;
background-color: red;
}
.production h2 {
font-size: large;
background-color: green;
}
.widget_index {
width: 200px;
height: 120px;
border: solid;
}
.widget_latest_post{
width: 200px;
height: 120px;
border: solid;
}

View File

@ -7,4 +7,5 @@ $(document).ready(function() {
});
}
);
$("#main_content").addClass("module");
});

View File

@ -0,0 +1,51 @@
/* module */
#module{
float: left;
width: 170px;
margin-left: 20px;
}
.production {
padding: 10px;
font-size: 12px;
border: 1px solid #e1e1e1;
margin-bottom: 10px;
background: #DDDAD0;
color: #484339;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 0 5px #33322C;
-webkit-box-shadow: 0 0 5px #33322C;
box-shadow: 0 0 5px #33322C;
text-shadow: 0 1px 0 #fff;
line-height: 1.4;
font-family: Arial;
}
.production h2{
font-size: 18px;
margin-bottom: 10px;
text-shadow: 0 1px 0 #fff;
border-left: 4px solid #B6300C;
line-height: 20px;
padding-left: 5px;
}
.production table{
border: 1px solid #9b968c;
padding: 5px;
width: 145px;
}
.production th{
background: #d3cfc3;
font-weight: bold;
}
.production th, .production tr, .production td{
border: 1px solid #9b968c;
padding: 5px;
}
.production a{
color: #9a460e;
text-decoration: none;
}
.production a:hover{
text-decoration: underline;
}