/**************************************
Joel A. Tropp / Caltech website
research.css: Style for research page elements
June 2021
**************************************/

@charset "UTF-8";

/* Import overall look and feel */

@import url("main.css");

/* Indent text after bullets */

li {
  list-style-position: outside;
}

/* Force uppercase in titles */

.uc {
  text-transform: uppercase;
}

/* Formatting for course title, if any */

.course-title {
  font-style: normal;
}



/* Lists of resourcess associated with a course or publication */


ul.resources {
  display: flex;
  flex-flow: row wrap;
  padding-left: 0px;
  list-style: none;
  line-height: 1.1em;
  margin: 0em 0em 0.5em 0em;
}

.resources li {
  list-style-type: none;
  float: left;
  width: 5em;
  text-align: center;
  /* vertical-align: middle; */
  font-size: smaller;
  /* display: inline; */
  border: 1px solid;
  border-radius: 3px;
  padding: 0px 5px 0em 5px;
  margin: 0px 5px 5px 5px;
}

section:nth-of-type(even) .resources li:hover {
  background-color: SaddleBrown;
}

section:nth-of-type(odd) .resources li:hover {
  background-color: White;
}

/* .resources::before {
  padding-left: 10px;
  content: "[";
}

.resources::after {
  content: "]";
} */

/* .resources li:not(:last-child)::after {
  content: ", ";
  padding-right: 5px;
} */
