moved css into a seperate file to organize and disambiguate docstrings from multiline strings

This commit is contained in:
Jesse Cirimelli-Low
2018-10-26 07:57:54 -07:00
parent 98a00f985b
commit fcfee649d5
2 changed files with 29 additions and 27 deletions
+26
View File
@@ -0,0 +1,26 @@
<style>
#data {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 99%;
max-width: 799px
}
#data td, #data th {
border: 0px solid #ddd;
padding: 7px;
}
#data tr:nth-child(even){background-color: #f1f2f2;}
#data tr:hover {background-color: #ddd;}
#data th {
padding-top: 11px;
padding-bottom: 11px;
text-align: left;
background-color: #3CAF50;
color: white;
}
</style>