Zuletzt bearbeitet vor 2 Monaten
von Xineohp1506

Vorlage:Note/styles.css: Unterschied zwischen den Versionen

(Die Seite wurde neu angelegt: „→‎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; }“)
 
Keine Bearbeitungszusammenfassung
Zeile 21: Zeile 21:
   font-size: 1em;
   font-size: 1em;
   color: #333;
   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;
}
}

Version vom 5. März 2025, 00:29 Uhr

/* 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;
}