The-Backbone-Store/jsonstore.css

66 lines
1.3 KiB
CSS
Raw Normal View History

2010-12-09 00:21:22 +00:00
body {
font-family: "Lucida Grande", Lucida, Helvetica, Arial, sans-serif;
background: #fff;
2010-12-09 00:21:22 +00:00
color: #333;
margin: 0px;
padding: 0px;
}
#header {
background: #c97e41;
2010-12-09 00:21:22 +00:00
margin: 0px;
padding: 20px;
}
#header h1 {
font-family: Inconsolata, Monaco, Courier, mono;
color: #fff;
2010-12-09 00:21:22 +00:00
margin: 0px;
}
#header .cart-info {
position: absolute;
top: 0px;
right: 0px;
text-align: right;
padding: 10px;
background: #714625;
color: #fff;
2010-12-09 00:21:22 +00:00
font-size: 12px;
font-weight: bold;
}
img {
border: 0;
}
.item {
float: left;
2010-12-09 00:21:22 +00:00
width: 250px;
margin-right: 3px;
padding: 2px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
2010-12-09 00:21:22 +00:00
border: 1px solid #ccc;
text-align: center;
2010-12-09 00:21:22 +00:00
font-size: 12px;
}
.item-title {
font-weight: bold;
}
.item-artist {
font-weight: bold;
font-size: 14px;
}
.item-detail .item-image {
float: left;
2010-12-09 00:21:22 +00:00
}
.item-detail .item-info {
padding: 100px 10px 0px 10px;
}