Zuletzt bearbeitet vor 5 Tagen
von Xineohp1506

styles.css

/* Container für die Notiz */
.note-box {
  background-color: #FFF9E6;
  border: 1px solid #E0D4A8;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* Überschrift der Notiz */
.note-header {
  font-size: 1.3em;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Inhalt der Notiz */
.note-content {
  line-height: 1.6;
  font-size: 1em;
  color: #333;
}

/* Schlagwörter-Bereich */
.note-tags {
  margin-top: 10px;
}

.note-tags span {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 2px 6px;
  margin: 2px;
  border-radius: 3px;
  font-size: 0.9em;
}