UI improvements

This commit is contained in:
2019-06-21 17:54:10 -05:00
parent 487f0c4eeb
commit 15087ca30f
7 changed files with 77 additions and 14 deletions

View File

@@ -1,3 +1,10 @@
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
html {
font-family: "Source Sans Pro";
}
table, th, td {
border: 1px solid #cccccc;
}
@@ -7,4 +14,42 @@ th, td {
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
}
pre, code {
font-family: "Source Code Pro";
font-size: 10pt;
}
a {
color: #004d4d;
}
.navul {
list-style-type: none;
margin: 0;
padding: 5;
margin-bottom: 20px;
}
.navli {
display: inline;
background: #eee;
border-radius: 7px;
margin-right: 10px;
transition: all 0.5s ease;
}
.navli:hover {
background: #004d4d;
}
.nava {
text-decoration: none;
padding: 20;
transition: all 0.5s ease;
}
.nava:hover {
color: #eee;
}