<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import rtd theme */
@import url(theme.css);

/* Customize for QGIS Documentation*/
.rst-content .guilabel {
 background:#7fbbe3
}
/*rtd theme does not render menuselection, so let's apply guilabel settings to it*/
.rst-content .menuselection {
 background:#7fbbe3;
 font-size: 80%;
 border:1px solid #7fbbe3;
 font-weight:700;
 border-radius:4px;
 padding:2.4px 6px;
 margin:auto 2px
}
/*keyboard text are by default rendered bigger*/
.rst-content .kbd {
 font-size: 90%
}
.outdated {
  /* only to be visible for outdated releases*/
  background: #ffbaba;
  color: #6a0e0e;
}
.isTesting {
  /* only to be visible in testing*/
  background: #f3fbfb;
  color: black;
}
.outdated,
.isTesting {
  /* top banner for testing and outdated docs*/
  padding-top: 0.5rem;
  margin-left: 0;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  z-index: 300;
  width: 100%;
  position: fixed
}

/* Widen space for the documentation content*/
.wy-nav-content {
	max-width: 1260px;
}

/* Avoid images being too big on bigger screen*/
@media screen and (min-width: 767px) {
  .rst-content img {
    max-width: 760px
  }
}

/* override table width restrictions 
from https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html */
@media screen and (min-width: 767px) {

   .wy-table-responsive table td {
      /* !important prevents the common CSS stylesheets from overriding
         this as on RTD they are loaded after this stylesheet */
      white-space: normal !important;
   }

   .wy-table-responsive {
      overflow: auto !important;
   }
}

.toc-columns ul {
  column-count: 3;
}
</pre></body></html>