/*
 * This file contains German translations for the CSS 'content' properties.
 */

figure figcaption:before {
    content: 'Abbildung ' counter(figure) ': ';
}

h2:before {
    content: counter(h2) '. ';
}

h3:before {
    content: counter(h2) '.' counter(h3) '. ';
}

h4:before {
    content: counter(h2) '.' counter(h3) '.' counter(h4) '. ';
}

q:after {
    content: '“';
}

q:before {
    content: '„';
}

table caption:before {
    content: 'Tabelle ' counter(table) ': ';
}
