<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  /*-------------------------------------------*\ 
  selected-publications.css
  
  The Quick Links &amp; Databases section provides the most commonly
  used links just below the search bar.  
  
  ORGANIZATION:
      div.selected-publications
      ├── h2.selected-publications__heading
      ├── div.selected-publications__loading-message
      ├── div.custom-search
      └── div.selected-publications__page
          ├── div.faculty-info
          └── div.works-info
              └── div#works-table_wrapper (automatically generated by DataTables)
                  └──table#works-table
\*-------------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-brown: #726158;
  --primary-gray: #555555;
}

.selected-publications {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-top: 50px;
  padding: 1em;
}

.selected-publications__loading {
  display: flex;
  justify-content: center;
}

.selected-publications__loading img {
  width: 2rem;
}

.selected-publications__heading {
  font-size: 38px !important;
  color: var(--primary-brown);
  cursor: pointer;
  font-weight: 100;
  margin: 0;
}

.custom-search {
  display: none;
  flex-direction: row;
  position: relative;
}

input {
  /* Remove rounded corners from iOS */
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.custom-search__input {
  background-color: #f1f1f1;
  border: 1px solid #a9a9a9;
  font-size: 1em;
  height: 3.5em;
  width: 100%;
  outline: none;
  padding-left: 1em;
}

.custom-search__button {
  background-color: var(--primary-brown);
  border: 1px solid var(--primary-brown);
  border-radius: 0;
  color: white;
  cursor: pointer;
  font-size: 1em;
  height: 3.5em;
  outline: none;
  width: 3.5em;
  position: absolute;
  right: 0;
  top: 0;
}

.selected-publications__page {
  display: none; /* Prevent content from showing before filtering by faculty */
  column-gap: 2em;
  flex-direction: row;
}

#faculty-table {
  border-top: 1px solid #e0e0e0;
}

#faculty-table thead {
  display: none;
}

.faculty-table-link {
  text-decoration: none;
  color: black;
}

.faculty-table-link:hover {
  text-decoration: underline;
  color: black;
}

.faculty-table-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1rem;
}
.faculty-table-image {
  height: 75px;
  width: 75px;
  overflow: hidden;
  border-radius: 50%;
}

.faculty-table-image img {
  width: 100%;
}

.faculty-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.faculty-info__text {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  padding: 2em 0;
}

.faculty-info__name {
  margin: 0;
}

.faculty-info__title {
  margin: 0;
}

.faculty-info__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  column-gap: 0.5em;
}

.faculty-info__buttons a {
  background-color: #8a100b;
  border-width: 0;
  border-radius: 0.25em;
  color: white;
  font-size: 0.8em;
  padding: 0.8em;
  text-decoration: none;
  text-transform: uppercase;
}

.faculty-info__image {
  border-radius: 50%;
  height: 350px;
  width: 350px;
  overflow: hidden;
  position: relative;
}

.faculty-info__image img {
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
}

.works-info {
  width: 100%;
}

#works-table_wrapper .dt-search {
  /* Hide DataTables native search bar */
  display: none;
}

#works-table thead {
  /* Header row with column name */
  display: none;
}

#works-table tr.dtrg-group th {
  /* Work type header */
  background-color: var(--primary-brown) !important;
  color: white;
}

#works-table .work-title {
  font-weight: bold;
}

.work-title a:link,
.work-title a:visited,
#works-table .fa-solid {
  color: var(--primary-gray);
  text-decoration: underline;
}

.work-title a:hover,
.work-title a:focus {
  color: black;
}

.library-credit {
  display: block;
  margin-left: auto;
  width: 150px;
}

@media (max-width: 991px) {
  .admin-dept .bulk-wrap .breadcrumb-wrap {
    display: none;
  }

  .selected-publications__heading {
    text-align: center;
  }
  .selected-publications__page {
    flex-direction: column;
    row-gap: 50px;
  }
}

@media (max-width: 400px) {
  .selected-publications__heading {
    font-size: 30px;
  }
}
</pre></body></html>