<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Plan-Seite -----------------------------------------------------------------------*/

.meilensteine {
    display: flex;
    flex-direction: column;
}

.meilenstein .datum {
    background-color: var(--blue);
    width: fit-content;
    margin: 20px auto;
    color: white;
    padding: 6px 12px;
}

.meilenstein h4 {
    text-align: center;
}

.meilenstein {
  transition: box-shadow .3s;
  padding: 20px;
  margin: 20px auto;
  border: 2px solid var(--blue);
}

.meilenstein:hover {
  box-shadow: var(--shadow);
}

.meilensteine i {
    margin: auto;
    width: 10px;
    font-size: 40px;
    color: var(--grey);
}
</pre></body></html>