@charset "UTF-8";
/**
 * @file
 * Visual styles for nodes.
 * @see css/components/node.css
 */
.node.unpublished {
  /*background-color: #d700000a;*/
  padding: 0.5em;
  background: none;
  border: solid 3px var(--colour-unpublished);
  border-radius: 0.5em;
}
.node.unpublished::before {
  content: "Unpublished";
  background: var(--colour-unpublished);
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.1em 0.5em;
  text-transform: uppercase;
  font-size: 0.7rem;
  border-bottom-left-radius: 4px;
}
.node.submitted {
  font-size: 0.85em;
}
.node footer {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.7em;
  align-items: center;
  font-size: 0.85em;
}
.node footer .profile img {
  width: 40px;
}
.node footer .tell {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}
.node footer .tell * + *::before {
  content: "•";
  margin-right: 0.5em;
  color: var(--colour-primary);
}

/*# sourceMappingURL=node.css.map */
