50 lines
550 B
CSS
50 lines
550 B
CSS
body {
|
|
font-family: Roboto, arial, sans-serif;
|
|
}
|
|
|
|
#content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.title {
|
|
|
|
}
|
|
|
|
#table-of-contents {
|
|
float: left;
|
|
width: 25%;
|
|
}
|
|
|
|
#table-of-contents h2 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.outline-2 {
|
|
float: right;
|
|
width: 75%;
|
|
}
|
|
|
|
#postamble {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
th, td {
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #f9fafc;
|
|
}
|
|
|
|
pre {
|
|
border-radius: 15px;
|
|
}
|