„Melding:Common.css“: Munur á milli breytinga

Úr Kennarakvika

Ekkert breytingarágrip
Ekkert breytingarágrip
Lína 21: Lína 21:
     color: #ddd; /* Set a suitable color */
     color: #ddd; /* Set a suitable color */
     float: left;
     float: left;
    line-height: 1;


     width: 1em;
     width: 1em;

Útgáfa síðunnar 15. maí 2024 kl. 22:54

/* Allt CSS sem sett er hér mun verða virkjað í öllum skinnum. */

/* Initialize the counter */
.skref-listi {
    counter-reset: skref-teljari;

}

.skref { clear: left; }

.skref .skref-teljari {
}

/* Increment the counter for each step and style the number */
.skref .skref-teljari::before {
    counter-increment: skref-teljari;
    content: counter(skref-teljari);

    font-size: 6em; /* Large, prominent size */
    font-weight: bold; /* Make it bold */
    color: #ddd; /* Set a suitable color */
    float: left;
    line-height: 1;

    width: 1em;
    text-align: right;
}

.skref .skref-lysing {
    /* Styles for the content */
}