24 lines
224 B
CSS
24 lines
224 B
CSS
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid #999;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
th {
|
|
background: #eee;
|
|
}
|
|
|
|
a {
|
|
color: blue;
|
|
text-decoration: none;
|
|
}
|