Wechseln zu:Navigation, Suche
Wiki
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */
:root {
  --me-width: 16%
}


body {
body {
Zeile 15: Zeile 19:
.flexelement {
.flexelement {
   background-color: blue;
   background-color: blue;
   width: {{#var: me-width | 16%}};
   width: var(--me-width);
   max-width: {{#var: me-width | 16%}};
   max-width: {{#var: me-width | 16%}};
}
}

Version vom 29. Mai 2019, 10:00 Uhr

/* CSS an dieser Stelle wirkt sich auf alle Skins aus */

:root {
  --me-width: 16%
}

body {
    font-family: Helvetica,Verdana,Arial,sans-serif;
    font-size: 13px;
    color: black;
    background-color: #b40001;
    text-align: justify;
   
    background-position: top center;
    background-repeat: no-repeat;
    line-height: 18px;
}

.flexelement {
  background-color: blue;
  width: var(--me-width);
  max-width: {{#var: me-width | 16%}};
}