style.css 1.11 KB
body,
a {
  color: #808080;
}
ul.sidenav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 15%;
  background-color: #f1f1f1;
  height: 100%;
  position: fixed;
  overflow: auto;
}
ul.sidenav li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}
ul.sidenav li a.active {
  background-color: #4caf50;
  color: #fff;
}
ul.sidenav li a:hover:not(.active) {
  background-color: #555;
  color: #fff;
}
#title {
  text-align: center;
  width: 100%;
  font-size: 50px;
  padding-bottom: 30px;
}
#content {
  margin-left: 25%;
  padding: 10px 16px;
  height: 100%;
}
table {
  width: 70%;
  height: 100%;
  border-collapse: collapse;
  text-align: center;
}
td {
  text-align: center;
  border: 1px solid #ddd;
  padding: 15px;
  width: 20%;
  height: 20%;
}
.bold {
  color: #ffc0cb;
  font-size: 100%;
}
.small {
  color: #808080;
  font-size: 8pt;
}
#show {
  width: 15%;
  display: inline-block;
  float: left;

}
#mynav {
  display: block;
  margin-left: -250px;
  transition: all 0.4s ease-in-out 0s;
}
#mynav.open {
  transition: all 0.4s ease-in-out 0s;
  float: left;
  margin-left: 0px;
}