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

Úr Kennarakvika

Ekkert breytingarágrip
(line-height aftur á 1em og height farið út.)
 
(37 millibreytingar ekki sýndar frá sama notandanum)
Lína 1: Lína 1:
/* Allt CSS sem sett er hér mun verða virkjað í öllum skinnum. */
/* Allt CSS sem sett er hér mun verða virkjað í öllum skinnum. */


/* .skref klasinn er notaður í verkefnaskrefum sem búin eru til m.a. með [[Snið:Skref]].
/* Initialize the counter */
/* Initialize the counter */
.skref-listi {
.skref-listi {
     counter-reset: skref-teljari;
     counter-reset: skref-teljari;
}
}
 
.skref-listi, .skref-teljari, .skref-teljari::before { clear: left; }
/* Increment the counter for each step and style the number */
/* Increment the counter for each step and style the number */
.skref .skref-teljari {
.skref-listi .skref-teljari::before {
     counter-increment: skref-teljari;
     counter-increment: skref-teljari;
     content: "skref " counter(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: 1em;
 
    width: 1em;
    text-align: right;
    padding-right: 0.2em;
}
}
ble {
/* Styles for the content */
    font-size: 24px; /* Large, prominent size */
.skref-listi .skref-lysing {
    font-weight: bold; /* Make it bold */
     padding-top: 1.5em;
    color: #333; /* Set a suitable color */
    margin-right: 10px; /* Space between number and text */
    padding: 5px 10px; /* Padding around the number */
    background-color: #f5f5f5; /* Light background for the number */
    border-radius: 50%; /* Circular background */
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    display: flex;
    justify-content: center;
     align-items: center;
}
}


.skref .skref-lysing, .skref .skref-leidbeining {
/* Felum titilinn á Forsíðunni */
    /* Styles for the content */
body.page-Forsíða h1#firstHeading { display: none; }
    padding: 10px;
    margin-top: 5px;
    background-color: #eee; /* Light background for the content */
    border: 1px solid #ccc; /* Border around the content */
}

Núverandi breyting frá og með 1. júlí 2024 kl. 15:49

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

/* .skref klasinn er notaður í verkefnaskrefum sem búin eru til m.a. með [[Snið:Skref]].
/* Initialize the counter */
.skref-listi {
    counter-reset: skref-teljari;
}
.skref-listi, .skref-teljari, .skref-teljari::before { clear: left; }
/* Increment the counter for each step and style the number */
.skref-listi .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: 1em;

    width: 1em;
    text-align: right;
    padding-right: 0.2em;
}
/* Styles for the content */
.skref-listi .skref-lysing {
    padding-top: 1.5em;
}

/* Felum titilinn á Forsíðunni */
body.page-Forsíða h1#firstHeading { display: none; }