tgerke / build-your-own-universe

A 20 minute talk given at R/Medicine 2020
https://build-your-own-universe.netlify.app/
15 stars 6 forks source link

CSS Edits #2

Closed gadenbuie closed 4 years ago

gadenbuie commented 4 years ago
/* moffitt-xaringan-extra.css */

.talk-title h1 {
  font-weight: 600;
}

.talk-author {
  font-weight: 300;
}

.talk-meta p {
  color: #444;
}

.talk-date {
  font-weight: 300;
}
gadenbuie commented 4 years ago

For slides from https://github.com/tgerke/ci4cc-cdsc/

.people__label {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.people__group .weepeople {
  transition: transform 0.5s ease-in-out;
}

.people__group:hover .people__label {
  overflow: ;
  opacity: 1;
}

.people__group:hover .weepeople {
  transform: scale(1.5);
}