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

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