<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.revision-page-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.revision-page-title h1 {
  margin: 0;
  flex: 1 auto;
}

.timeline-container {
  position: relative;
  height: 2rem;
  margin: 1rem;
}

.timeline-item {
  position: absolute;
  bottom: 0;
  width: 1.8rem;
  height: 1.8rem;
  transform: translateX(-50%) translateY(50%);
  background-color: white;
  transition: all .2s;
  border-radius: 50%;
  border: 4px solid var(--neutral-color);
  cursor: pointer;
  z-index: 2;
}
.timeline-item:hover, .timeline-item.active {
  background-color: var(--neutral-color);
  width: 2.1rem;
  height: 2.1rem;
  z-index: 3;
}
.timeline-item.active, .timeline-item.active + .timeline-item-text {
  background-color: var(--secondary-color-1);
  border-color: var(--secondary-color-1);
}
.timeline-item-text {
  display: none;
  position: absolute;
  bottom: 1.3rem;
  padding: .3rem .8rem;
  border-radius: 5px;
  background-color: var(--neutral-color);
  color: var(--neutral-light-color);
  font-weight: bold;
}
.timeline-item:hover + .timeline-item-text {
  display: block;
}

.timeline-bar {
  position: absolute;
  height: 6px;
  background-color: var(--neutral-soft-color);
  bottom: 0;
  transform: translateY(50%);
  left: 0;
  right: 0;
  border-radius: 3px;
}

.view-types-selector {
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: 15px double var(--neutral-color);
}
.view-types-selector li {
  /* Display the nav in black */
  --primary-color: var(--neutral-color);
  --link-color: var(--neutral-color);
  cursor: pointer;
}
.view-types-selector .code-or-preview {
  flex: 1 auto;
  text-align: right;  
  margin: 0;
}
.view-types-selector .code-or-preview span {
  color: var(--primary-color);
  padding-left: 1.5rem;
}

.revision-title-container {
  display: flex;
  align-items: center;
  margin: 2rem 0 2.5rem 0;
}
.revision-title {  
  flex: 1 auto;
}
.revision-title h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.revision-title-container i[disabled] {
  color: var(--neutral-soft-color);
  cursor: not-allowed;
}
.revision-title-container i:not([disabled]):hover {
  cursor: pointer;
  color: var(--secondary-color-1)
}

.spinner-loader {
  margin-top: 4rem;
  opacity: .5;
}

body, #yw-header, #yw-main, #yw-footer {
  background-color: #4e505608;
}

.preview-container .preview-content {
  padding: 2rem;
  background-color: var(--neutral-light-color);
  min-height: 800px;
}

.preview-container pre {
  white-space: pre-line; /* breaks line so we don't need to horizontally scroll */
  font-family: monospace;
  font-size: 1rem;
  padding: 0;
  border: none;
  background: none;
}
.preview-container pre.ignored-action {
  font-size: .9em;
  background-color: var(--neutral-color);
  color: var(--neutral-light-color);
  padding: 1rem;
  margin: 0;
}
ins {
  text-decoration: none !important;
  display: inline-block;
}
pre ins {
  display: inline;
}
ins:not(.mod) {
  color: white !important;
  background-color: #4ea952 !important;
}
ins:not(.mod) a {
  color: white !important;
}
del {
  display: inline-block;
  color: white !important;
  background-color: red !important;
  text-decoration: line-through !important;
}
ins img, del img {
  margin: 5px;
}

.preview-container table.entry-code td {
  vertical-align: top;
}
.preview-container table.entry-code td.key {
  font-weight: bold;
}
.preview-container table.entry-code td.key pre {
  white-space: pre;
}
.preview-container table.entry-code td + td {
  padding-left: 1rem;
}
</pre></body></html>