/* 
Custom style specifications
*/ 
:root {
  --blue-green: #124660;
  --dropdown-bg: #05557d;
  --dark-green: #1B9476;
  --light-green: #8BD59E;
  --cold-white: #C7DBC2;
  --warm-white: #F4EBD6;
};

/* attributions.html */
.log-items{
    list-style: none;
}

/* layout.html */
.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: fit-content(3.5rem) fit-content(5rem) fit-content(3.5rem);
  }
  
.footer-links li, .footer-links a {
display: fixed;
align-items: center;
}

.footer-links li:nth-child(1n):before{
display: inline-block;
width: 3.5rem;
height: 3.5rem;
background-repeat: no-repeat;
background-size: 100% 100%;
margin-right: 0.25em;
vertical-align: middle;
}

.footer-links a {
background-color: blueviolet;
  }

/* notebook.html */
.notebook-week-list{
  list-style: disc;
}

.nested-notebook-list{
  list-style-type: circle;
}

.table {
  color:var(--warm-white);
}
thead,tbody {
  background-color:var(--blue-green);
}