MediaWiki:Common.css: verschil tussen versies

Uit Hackerspace Bitlair

Geen bewerkingssamenvatting
kGeen bewerkingssamenvatting
 
(10 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


input,
#mw-indicator-smw-entity-examiner {
textarea,
     display: none;
select,
button {
     color: black;
    background-color: white;
}
}


.mw-body {
/* WIPcam fotos */
     background-color: rgba(255,255,255,0.7);
#fotos {
     display: flex;
    wrap: nowrap;
 
    > a {
        display: inline-block;
        flex-grow: 1;
    }
}
}
body {
 
    background-color: white !important;
/* Space state gerelateerd */
    background-image: url('https://bitlair.nl/images/3/3a/Bg.png')
#p-logo {
}
     position: relative;
#mw-page-base {
     background-image: linear-gradient(#f6f6f6 50%, rgba(255,255,255,0) 100%);
}
}


/* Space state gerelateerd */
#spacestatus {
#spacestatus {
     width: 80px;
     padding: 0 0.25em;
     position: relative;
     position: absolute;
     top: -20px;
     top: 100px;
     left: 43px;
     left: 50px;
     border-radius: 3px;
     border-radius: 3px;
     text-align: center;
     text-align: center;
     box-shadow: rgba(100,100,100,.6) 2px 2px 5px;
     box-shadow: rgba(100,100,100,.6) 2px 2px 5px;
     transform: rotate(-5deg);
     transform: rotate(-5deg);
     animate: ;
     font-size: 1.4em;
}
}



Huidige versie van 3 jan 2026 20:09

/* CSS placed here will be applied to all skins */

#mw-indicator-smw-entity-examiner {
    display: none;
}

/* WIPcam fotos */
#fotos {
    display: flex;
    wrap: nowrap;

    > a {
        display: inline-block;
        flex-grow: 1;
    }
}

/* Space state gerelateerd */
#p-logo {
    position: relative;
}

#spacestatus {
    padding: 0 0.25em;
    position: absolute;
    top: 100px;
    left: 50px;
    border-radius: 3px;
    text-align: center;
    box-shadow: rgba(100,100,100,.6) 2px 2px 5px;
    transform: rotate(-5deg);
    font-size: 1.4em;
}

#spacestatus.open {
    opacity: 1;
    background: lime;
    color: black;
}

#spacestatus.open:before {
    content: "nu open!";
}

#spacestatus.closed {
    opacity: 1;
    background: lightgray;
    color: black;
}

#spacestatus.closed:before {
    content: "momenteel gesloten";
}

/* very important */
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}