@charset "UTF-8";
/*! sass --watch assets/css/index.scss:assets/css/index.css */
/* Neutral */
@font-face {
  font-family: "neutral";
  src: url("neutral.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "neutral";
  src: url("neutral-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Trattatello";
  src: url("trattatello.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* -----  Reset & Normalization  ---------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}

::-moz-selection {
  background: orange;
  color: red;
}

::selection {
  background: orange;
  color: red;
}

/* -----  Basics  ---------------------------------------- */
html, body, h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-style: normal;
  word-spacing: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
}

#homelink, #menu {
  /*font-size: 16px;*/
}

a {
  color: black;
  color: #295C23;
  text-decoration: none;
  display: inline;
  color: darkgreen;
  text-shadow: 0 0 20px rgb(0, 255, 0);
  /*background-color: rgba(255,255,0, .2);*/
  transition: text-shadow 500ms ease;
}

a:hover {
  /*color: red;*/
  border-bottom: none;
  background-color: transparent;
  text-shadow: 0 0 20px rgb(255, 85, 0);
}

code {
  font-size: 17px;
  line-height: 20px;
}

body {
  background: #fafafa;
  background: #4CAE1D;
  background: #D6A527;
  background: #EFEFCE;
  color: darkgreen;
}

h1 {
  font-weight: 500;
}

h2 {
  font-weight: 500;
  padding: 10px 0px;
}

h4 {
  padding-top: 20px;
}

h3, h4 {
  margin: 0px;
  display: block;
}

strong {
  font-weight: 600;
}

.strikethrough {
  text-decoration: line-through;
}

.caption {
  font-family: courier;
  font-weight: normal;
  font-size: 16px;
}

.title {
  margin: 30px auto;
  display: block;
}

p {
  margin-bottom: 20px;
}

/* lists */
ul {
  margin: 0px 20px 0px 0px;
  padding-bottom: 15px;
}

ul li {
  list-style-position: inside;
  list-style-type: none;
  padding: 0px 0px 0px 50px;
}

ul li::before {
  display: inline-block;
  width: 30px;
  margin-left: -30px;
  content: "✔︎";
}

ul li ul {
  /*margin-bottom: 20px;*/
}

ol {
  padding-left: 50px;
  padding-bottom: 20px;
}

ol li {
  list-style-type: decimal;
  padding: 5px 0px 5px 0px;
}

ol li ol {
  padding-bottom: 0px;
}

ol li ol li {
  list-style-type: lower-alpha;
}

ol li ul li {
  list-style-type: none;
}

ol li ul li::before {
  margin-left: 0px;
}

sup {
  background: darkgreen;
  color: rgba(118, 210, 65, 0.8);
  padding: 2px 6px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 0px;
}

.footnotes {
  font-size: 14px;
  line-height: 20px;
}

/* list reset */
ul.calendar > li::before, .Resources ul li::before, ul.library li::before, #menu li::before, .people li::before, .pill li::before {
  display: none;
  width: 0px;
  margin-left: 0px;
  content: "";
}

.Resources ul li, #menu li {
  padding-left: 0px;
}

.people li, .pill li {
  display: inline-block;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.people li a, .pill li a {
  border: 1px solid #222;
  border-radius: 20px;
  padding: 10px 14px;
  display: inline-block;
  margin: 1px 0px;
  transition: all 500ms ease;
}

.people li a:hover, .pill li a:hover {
  background: white;
  transform: translateY(-5px);
}

hr {
  border: 1px dotted black;
  margin: 20px 0px 20px;
  clear: both;
  display: block;
  /*background-color:#FFFF00;*/
  height: 1px;
}

/* -----  Navigation  ---------------------------------- */
nav, h1#logo {
  z-index: 100000;
}

nav a, h1#logo {
  text-shadow: none;
  font-family: -apple-system, BlinkMacSystemFont, helvetica, arial, sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}

h1#logo {
  position: fixed;
  top: 40px;
  left: 0px;
  width: 100vw;
  text-align: center;
  font-weight: 600;
}

.logo-bg {
  color: green;
  padding: 20px;
  background: white;
  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

nav {
  position: fixed;
  bottom: 40px;
  left: 0px;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
}

nav ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0px 20px;
}

nav a {
  color: white;
  padding: 20px;
  background: green;
  border-radius: 30px;
}

/* -----  Main  ---------------------------------------- */
.main {
  margin: 100px auto 200px;
  position: relative;
  display: block;
  width: calc(100vw - 40px);
  max-width: 1080px;
  padding: 10px;
  box-sizing: content-box;
  z-index: 10;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-bottom: 10px;
}

pre {
  padding: 20px;
  background: #f2f2f2;
  margin: 10px 0px;
}

.two-col > div {
  width: calc(50% - 20px);
  display: inline-block;
  vertical-align: top;
  margin-bottom: 40px;
}

.two-col > div:first-child {
  margin-right: 24px;
}

.two-col > div img {
  display: block;
  margin-bottom: 10px;
  max-width: calc(100% - 30px);
}

.caption {
  display: inline-block;
  padding-bottom: 5px;
}

/* homepage */
body.Home {
  /* content */
  /*#glow {
    position: fixed;
    left: 0px;
    top: 0px;
    pointer-events: none;
      box-shadow: inset 0 0 400px #70ab54;  
  }*/
  /* overlay */
}
body.Home #container {
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.Home #content {
  background: white;
  background: #fcfcef;
  background: yellow;
  background: white;
  /*    box-shadow: inset 0 0 250px red;  */
  padding: 20vw 7vw;
  overflow: scroll;
  position: relative;
  transform: translateY(0vh);
}
body.Home #content #overview {
  margin-bottom: 20px;
}
body.Home #content #overview a {
  text-decoration: none;
  font-family: "Trattatello", cursive;
  font-style: italic;
  color: darkgreen;
  text-shadow: 0 0 20px rgb(255, 255, 100);
}
body.Home #content #overview h2, body.Home #content #overview p, body.Home #content #overview li {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 50px;
  margin-bottom: 0px;
  letter-spacing: 0px;
}
body.Home #content #overview h2 {
  text-indent: 50px;
  margin-bottom: 50px;
  font-weight: 700;
}
body.Home #content #overview p {
  text-indent: 50px;
}
body.Home #content #overview p:first-of-type {
  text-indent: 0px;
}
body.Home #content #info {
  border: 1px solid green;
  padding: 20px;
  margin: 40px 0px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: rgba(211, 211, 211, 0.5);
}
body.Home #content #info p {
  text-indent: 0px;
  margin-bottom: 10px;
  padding: 0px 10px;
}
body.Home #content #info a {
  color: darkgreen;
  text-shadow: 0 0 20px rgb(255, 255, 100);
}
body.Home #content #notes p {
  border: 1px solid green;
  padding: 20px;
  margin: 20px 0px;
}
body.Home #content #notes p a {
  text-shadow: 0 0 20px rgb(255, 255, 100);
}
body.Home #show-more {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  margin: 10px 0px;
  background: yellow;
  border-radius: 30px;
}
body.Home #show-more:hover {
  text-decoration: none;
  cursor: pointer;
  color: brown;
}
body.Home #show-more.hide {
  opacity: 0;
}
body.Home #more {
  display: none;
}
body.Home #more.expand {
  display: block;
}
body.Home #frame {
  background-image: url("../svg/book.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  pointer-events: none;
}
@media (max-width: 1366px) {
  body.Home #content #overview h2 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 40px;
    text-indent: 40px;
  }
  body.Home #content #overview p, body.Home #content #overview li {
    font-size: 34px;
    line-height: 40px;
  }
  body.Home #content #overview p {
    text-indent: 40px;
  }
  body.Home #content #info {
    font-size: 14px;
    padding: 0px;
    line-height: 20px;
    grid-template-columns: 1fr 1fr;
  }
  body.Home #content #info p {
    padding: 10px;
    margin: 0px;
    border-bottom: 1px solid green;
  }
  body.Home #content #info p:nth-child(odd) {
    border-right: 1px solid green;
  }
  body.Home #content #info p:last-child {
    border-bottom: none;
  }
  body.Home #frame {
    background-image: url("../svg/computer.svg");
  }
  body.Home #content {
    padding: 20vh 12vw;
    /*    box-shadow: inset 0 0 150px purple;   */
    transform: translateY(-10vh);
  }
}
@media (max-width: 1024px) {
  body.Home {
    /* nav */
  }
  body.Home #content #overview h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    text-indent: 32px;
  }
  body.Home #content #overview p, body.Home #content #overview li {
    font-size: 24px;
    line-height: 32px;
  }
  body.Home #content #overview p {
    text-indent: 32px;
  }
  body.Home nav a, body.Home h1#logo {
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
  }
  body.Home h1#logo {
    top: 30px;
  }
  body.Home nav {
    bottom: 25px;
  }
  body.Home .logo-bg, body.Home nav a {
    padding: 10px 18px;
    border-radius: 20px;
  }
  body.Home nav ul li {
    margin: 0px 8px;
  }
  body.Home #frame {
    background-image: url("../svg/poster.svg");
  }
  body.Home #content {
    padding: 18vh 11vw;
    /*    box-shadow: inset 0 0 150px blue;*/
    transform: translateY(0vh);
  }
}
@media (max-width: 700px) {
  body.Home {
    /* nav */
    /* background frame */
  }
  body.Home #content #overview h2 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 18px;
    text-indent: 18px;
  }
  body.Home #content #overview h2, body.Home #content #overview p, body.Home #content #overview li {
    font-size: 14px;
    line-height: 18px;
  }
  body.Home #content #overview p {
    text-indent: 20px;
  }
  body.Home #content #info {
    padding: 0px;
    margin: 20px 0px 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
  }
  body.Home #content #info p {
    padding: 8px;
    margin: 0px;
    border-bottom: 1px solid green;
  }
  body.Home #content #info p:nth-child(odd) {
    border-right: none;
  }
  body.Home #content #info p:last-child {
    border-bottom: none;
  }
  body.Home nav a, body.Home h1#logo {
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
  }
  body.Home h1#logo {
    top: 30px;
  }
  body.Home nav {
    bottom: 25px;
  }
  body.Home .logo-bg, body.Home nav a {
    padding: 10px 12px;
    border-radius: 20px;
  }
  body.Home nav ul li {
    margin: 0px 5px;
  }
  body.Home #frame {
    background-image: url("../svg/notepad.svg");
  }
  body.Home #content {
    padding: 20vh 10vw;
    transform: translateY(0vh);
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) {
  body.Home #content #overview h2, body.Home #content #overview p, body.Home #content #overview li {
    font-size: 15px;
    line-height: 20px;
  }
  body.Home #content #overview p {
    font-weight: 400;
    text-indent: 20px;
  }
  body.Home #container {
    display: block;
  }
  body.Home #frame {
    background-image: none;
  }
  body.Home #content {
    padding: 40px 20px;
    /*    box-shadow: inset 0 0 150px purple;   */
    transform: translateY(0vh);
  }
}

/* -----  Calendar  ---------------------------------------- */
ul.calendar {
  margin: 20px 0px;
}

/* date type */
.key {
  font-size: 14px;
  position: absolute;
  top: 45px;
  right: 10px;
}

.key span {
  padding-left: 5px;
}

/* collapsed */
ul.calendar li {
  list-style-type: none;
  position: relative;
  padding: 0px 0px;
}

ul.calendar li.calendar-row {
  border: 1px solid green;
  margin-bottom: 10px;
  transition: all 200ms ease;
}

ul.calendar li.calendar-row:hover {
  box-shadow: 0px 5px 20px #295C23;
  background: white;
}

.week {
  padding: 20px 20px 20px;
}

.week:hover {
  cursor: pointer;
  color: rgba(118, 210, 65, 0.8);
}

.body {
  display: none;
}

/* week number */
.number::after {
  content: ":";
}

/* date */
.days {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  text-align: right;
}

/* expand */
.body.expand {
  display: block;
}

ul.calendar li ul {
  margin-bottom: 0px;
}

ul.calendar li ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0px 0px 0px 50px;
}

ul.calendar .body {
  padding: 10px 0px 20px;
  padding: 10px 20px 20px;
}

/* calendar type */
.in-class ul li::before {
  content: "☀︎";
}

.due {
  /*color: blue;*/
}

.due ul li::before {
  content: "✔︎";
}

.homework {
  /*color: brown;*/
}

.homework ul li::before {
  content: "→";
}

.reading {
  /*color: darkgrey;*/
}

.reading-list ul li::before, .reading ul li::before {
  content: "☰";
}

.outcome-list ul li::before {
  content: "★";
}

.reqs-list ul li::before {
  content: "✔︎";
}

.resource-list ul li::before {
  content: "☁︎";
}

.reference-list ul li::before {
  content: "☺︎";
}

.example-list ul li::before {
  content: "❤︎";
}

#mini-cal {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr 3fr;
  border-right: 1px solid green;
  border-bottom: 1px solid green;
}

#mini-cal div {
  border-top: 1px solid green;
  border-left: 1px solid green;
  padding: 10px;
}

.notes {
  font-size: 14px;
  line-height: 18px;
}

/* -----  Projects  ---------------------------------------- */
.projects {
  margin: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  align-items: top;
}

.inactive {
  opacity: 0.5;
}

.project {
  vertical-align: top;
  display: block;
  width: 100%;
  margin: auto;
  list-style-type: none;
  padding: 20px;
  border: 1px solid darkgreen;
  margin-bottom: 40px;
}

.project a {
  background: none;
  border: none;
}

.project a:hover {
  /*color: pink;*/
}

.project a:hover img {
  opacity: 0.8;
}

.project img {
  display: block;
  margin: auto;
  margin-top: 10px;
  width: 100%;
  height: auto;
}

/* Project page */
blockquote {
  padding: 20px 0px 20px 40px;
  color: saddlebrown;
  display: block;
}

/* -----  Library  ---------------------------------------- */
body.Library ul.library a {
  text-decoration: none;
  background-color: transparent;
  border: none;
  width: 100%;
  display: block;
}

ul.library, ul.library li {
  margin: 0px;
  padding: 0px;
}

ul.library li.library-row {
  list-style-type: none;
  border-top: 1px solid #222;
  padding: 20px 0px;
  position: relative;
}

li.library-row:hover {
  cursor: pointer;
  /*background: pink;*/
}

li.library-row div {
  display: inline-block;
  vertical-align: top;
}

.year {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace;
  font-size: 0.875rem;
}

.library-row .year {
  position: absolute;
  top: 20px;
  right: 0px;
  z-index: 10;
  text-align: right;
}

.text-title {
  margin: 30px auto;
}

/* -----  Resources -------------------------------------- */
.Resources h3 {
  margin: 20px 0px 10px;
}

.Resources .main li {
  display: inline-block;
  list-style-type: none;
  margin: 0px;
}

.Resources .main a {
  border: 1px solid #222;
  border-radius: 20px;
  padding: 0px 12px;
  display: inline-block;
  margin: 1px 0px;
  transition: all 500ms ease;
}

.Resources .main a:hover {
  background: white;
  transform: translateY(-5px);
}

/* -----  Footer  ---------------------------------------- */
.footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  font-size: 14px;
  padding: 20px;
  opacity: 0.3;
}

.footer:hover {
  z-index: 100;
  opacity: 1;
}

.footer p {
  margin: 0px;
}

.meta, .meta a {
  color: #aaa;
}

.meta {
  margin-bottom: 20px;
  display: block;
}

@media only screen and (max-width: 1024px) {
  .two-col > div {
    width: 100%;
    display: block;
    vertical-align: top;
    margin-bottom: 10px;
  }
  .two-col > div:first-child {
    margin-right: 0px;
  }
  .two-col > div img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  html {
    font-size: 14px;
    line-height: 18px;
  }
  body, h1, h2, h3, h4 {
    font-size: 14px;
    line-height: 18px;
  }
  nav a, h1#logo {
    font-size: 14px;
    line-height: 14px;
  }
  code {
    font-size: 16px;
  }
  .caption {
    font-size: 12px;
  }
  .week {
    display: block;
  }
  /* nav */
  nav {
    bottom: 5px;
  }
  #homelink {
    float: none;
  }
  ul#menu {
    margin: 10px 0px;
    padding: 0px;
  }
  #menu li {
    width: auto;
    margin: 0px 0px 10px;
    padding: 2px;
  }
  #menu li a {
    padding: 5px 10px;
  }
  #zoom {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #slack {
    position: absolute;
    top: 10px;
    right: 120px;
  }
  #menu li a#zoomlink, #menu li a#slacklink {
    padding: 0px 10px;
    font-size: 14px;
    margin: 0px;
    display: inline-block;
  }
  /* page */
  .main {
    margin-top: 20px;
  }
  .header {
    margin: 60px auto 20px;
  }
  .key {
    position: relative;
    top: -20px;
  }
  .text.wrap {
    width: 100%;
  }
  .projects {
    margin: 0px;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 40px;
    align-items: top;
  }
  .project {
    width: 100%;
    margin-bottom: 20px;
  }
  .project:nth-child(2n) {
    margin-left: 0px;
  }
  ol {
    padding-left: 20px;
    padding-bottom: 20px;
  }
  ul li {
    padding: 0px 0px 0px 30px;
  }
  ul.calendar li ul li {
    margin-left: 10px;
    padding: 0px 0px 0px 20px;
  }
  .days, .library-row .year {
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 10;
    text-align: left;
    display: block;
  }
}
/* styles for printed syllabus*/
@media print {
  body, h1, h2, h3, h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .caption, code {
    font-size: 12px;
  }
  .header, .links, .homepage .circle, .section.people {
    display: none;
  }
  .footer {
    position: fixed;
    opacity: 1;
    bottom: auto;
    top: 45px;
    width: 30%;
    font-size: 10px;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
  }
  main {
    margin: 0 auto !important;
    padding: 0;
    max-width: none;
    width: 80% !important;
  }
  /* two cols */
  .two-col > div {
    width: 100%;
    display: block;
    vertical-align: top;
    margin-bottom: 10px;
  }
  .two-col > div:first-child {
    margin-right: 0px;
  }
  img {
    max-width: 50%;
  }
  .show-more {
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */
