You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
2.0 KiB
CSS

2 years ago
/*--------------Veränderung der Textgröße--------------*/
2 years ago
#font-sizePX {
2 years ago
font-size: 20px;
}
2 years ago
#font-sizePR {
2 years ago
font-size: 120%;
}
2 years ago
#font-sizeCM {
2 years ago
font-size: 1cm;
}
2 years ago
#font-sizeS {
2 years ago
font-size: smaller;
}
2 years ago
#font-sizeM {
2 years ago
font-size: medium;
}
2 years ago
#font-sizeL {
2 years ago
font-size: larger;
}
2 years ago
2 years ago
/*--------------Veränderung der Textart--------------*/
2 years ago
#font-familyA {
2 years ago
font-family: Arial;
}
2 years ago
#font-familyG {
2 years ago
font-family: Georgia;
}
2 years ago
#font-familyLH {
2 years ago
font-family: Lucida Handwriting;
}
2 years ago
2 years ago
/*--------------Schriftfarbe ändern--------------*/
2 years ago
#colorW {
2 years ago
color: red;
}
2 years ago
#colorZ {
2 years ago
color: rgb(81, 132, 109);
}
/*--------------Schrift stylen--------------*/
2 years ago
#font-styleI {
2 years ago
font-style: italic;
}
2 years ago
#font-styleO {
2 years ago
font-style: oblique;
}
/*--------------Schriftdicke verändern--------------*/
2 years ago
#font-weightB {
2 years ago
font-weight: bold;
}
2 years ago
#font-weightZ {
2 years ago
font-weight: 700;
}
/*--------------Schrift Variante ändern--------------*/
2 years ago
#font-variant {
2 years ago
font-variant: small-caps;
}
/*--------------Textausrichtung ändern--------------*/
2 years ago
#text-alignL {
2 years ago
text-align: left;
}
2 years ago
#text-alignR {
2 years ago
text-align: right;
}
2 years ago
#text-alignC {
2 years ago
text-align: center;
}
2 years ago
#text-alignJ {
2 years ago
text-align: justify;
}
/*--------------Textgestaltung--------------*/
2 years ago
#text-decorationU {
2 years ago
text-decoration: underline;
}
2 years ago
#text-decorationO {
2 years ago
text-decoration: overline;
margin: 4px;;
}
2 years ago
#text-decorationLT {
2 years ago
text-decoration: line-through;
}
/*--------------Wort- und Zeichenabstände verändern--------------*/
2 years ago
#word-spacingMM {
2 years ago
word-spacing: 3mm;
}
2 years ago
#word-spacingPX {
2 years ago
word-spacing: 10px;
}
2 years ago
#word-spacingREM {
2 years ago
word-spacing: 1rem;
}
/*--------------Texte einrücken--------------*/
2 years ago
#text-indentMM {
2 years ago
text-indent: 10mm
2 years ago
}
#text-indentPX {
2 years ago
text-indent: 20px;
}
2 years ago
#text-indentREM {
2 years ago
text-indent: 1rem;
}
/*--------------Texte transvormieren--------------*/
2 years ago
#text-transformC {
2 years ago
text-transform: capitalize
}
2 years ago
#text-transformU {
2 years ago
text-transform: uppercase
}
2 years ago
#text-transformL {
2 years ago
text-transform: lowercase
}
2 years ago
#text-transformN {
2 years ago
text-transform: none
2 years ago
}