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