24 lines
322 B
CSS
24 lines
322 B
CSS
body {
|
|
padding: 0.5em 1em 2em 1em;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#requests {
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
|
|
#requests table, th, td {
|
|
border: 2px solid black;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
#requests th, td {
|
|
padding: 5px;
|
|
}
|
|
|
|
#requests .request-score {
|
|
text-align: right;
|
|
}
|