24 lines
258 B
CSS
24 lines
258 B
CSS
|
#content {
|
||
|
padding-left: 5%;
|
||
|
padding-right: 5%;
|
||
|
}
|
||
|
|
||
|
#results {
|
||
|
width: 100%;
|
||
|
table-layout: fixed;
|
||
|
border-collapse: collapse;
|
||
|
border: 1px solid #ccc;
|
||
|
}
|
||
|
|
||
|
tr:nth-child(even) {
|
||
|
background-color: #DDDDDD;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
width: 20%;
|
||
|
}
|
||
|
|
||
|
.author {
|
||
|
width: 20%;
|
||
|
}
|