Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/revealjs/pandoc/title-fancy/title-slide.scss
12923 views
/*-- scss:rules --*/
$presentation-author-block-padding-left: if(
  $presentation-title-slide-text-align != left,
  0.5em,
  0
);
$presentation-author-block-padding-right: if(
  $presentation-title-slide-text-align != right,
  0.5em,
  0
);

.reveal {
  .quarto-title-block {
    .quarto-title-authors {
      display: flex;
      justify-content: $presentation-title-slide-text-align;

      .quarto-title-author {
        padding-left: $presentation-author-block-padding-left;
        padding-right: $presentation-author-block-padding-right;

        a,
        a:hover,
        a:visited,
        a:active {
          color: inherit;
          text-decoration: none;
        }

        .quarto-title-author-name {
          margin-bottom: 0.1rem;
        }

        .quarto-title-author-email {
          margin-top: 0px;
          margin-bottom: 0.4em;
          font-size: 0.6em;
        }

        .quarto-title-author-orcid {
          img {
            margin-bottom: 4px;
          }
        }

        .quarto-title-affiliation {
          font-size: 0.7em;
          margin-top: 0px;
          margin-bottom: 8px;
        }

        .quarto-title-affiliation:first {
          margin-top: 12px;
        }
      }
    }
  }
}