UTCWeb / particle

A starter kit for using the prototyping tool, Pattern Lab, in tandem with a Drupal theme. Utilizes Webpack for all asset management.
https://phase2.gitbook.io/frontend/
GNU General Public License v2.0
0 stars 10 forks source link

Just a few nit-picky css fixes. #681

Closed UTCbridget closed 2 weeks ago

UTCbridget commented 1 month ago

The headlines are waaaaaay too big now since Marcom requests.

Other global overrides currently in the footer of production need to be moved to global.css:

<style type="text/css">h3.employee-card__name, h4.employee-card__suffix {font-size: 1.25rem;}
  .localist_widget_container .action_button a {
  text-decoration: none !important;
  background-color: #112e51;
  border: 1px solid #112e51 !important;
  color: #fff !important;
  padding: 6px 12px;
  background-image: unset !important;
  background-position: unset !important;
}

.localist_widget_container .action_button a:hover {
  color: #112e51 !important;
}
/*  button.header__toggleable-button.js-toggle-search:before {
    content: '\1F50D';
    width: 100% !important;
    display: inline-block;
    height: 100% !important;
    font-size: 2rem;
  }
  button.header__toggleable-button.js-toggle-search svg, 
  a#scroll-to-top-btn svg,
  button.header__toggleable-button.js-toggle-search i, 
  a#scroll-to-top-btn i {
    display:none;
  }
  a#scroll-to-top-btn:before {
    content: "\005E";
    color: #fff;
    font-size: 3rem;
    margin-top: 15px;
    opacity: 1;
}*/
button.header__toggleable-button.js-toggle-search {
  font-size: 1.5rem;
}
button.header__toggleable-button.js-toggle-search:hover,
.close-search-btn.close:hover {
  transform: scale(1.5);
  color: #fdb736;
}
</style>