13 lines
207 B
CSS
13 lines
207 B
CSS
|
/* Glossary */
|
||
|
table, th, td {
|
||
|
border: 1px solid;
|
||
|
border-color: lightgrey;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
#table {
|
||
|
color: lightgrey;
|
||
|
width: 80%;
|
||
|
max-width: 700px;
|
||
|
margin: auto;
|
||
|
}
|