69 lines
949 B
CSS
69 lines
949 B
CSS
body {
|
|
background: #000;
|
|
}
|
|
|
|
#wrapper {
|
|
width: 100%
|
|
}
|
|
|
|
#header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #f00;
|
|
}
|
|
|
|
#lists {
|
|
width: 80%;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.listWrapper {
|
|
border: 1px solid #ccc;
|
|
padding: 5px;
|
|
-moz-border-radius: 10px;
|
|
-webkit-border-radius: 10px;
|
|
background: #333;
|
|
}
|
|
|
|
.listDetail {
|
|
padding: 20px;
|
|
width: 80%;
|
|
-moz-border-radius: 10px;
|
|
-webkit-border-radius: 10px;
|
|
background: #ccc;
|
|
color: #333;
|
|
font-weight: bold;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.listImage {
|
|
float: left;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
img {
|
|
-moz-border-radius: 10px;
|
|
-webkit-border-radius: 10px;
|
|
}
|
|
|
|
.listTitle {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.listTitle a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.listDescription {
|
|
padding-left: 10px;
|
|
color: #333;
|
|
}
|