MediaWiki:Common.css: Difference between revisions

From Hackerspace Amersfoort
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
     color: black;
     color: black;
     background-color: white;
     background-color: white;
}
.mw-body {
    background-color: rgba(255,255,255,0.7);
}
body {
    background-color: white !important;
    background-image: url('https://bitlair.nl/images/3/3a/Bg.png')
}
#mw-page-base {
    background-image: linear-gradient(#f6f6f6 50%, rgba(255,255,255,0) 100%);
}
}



Revision as of 17:49, 24 October 2018

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

input,
textarea,
select,
button {
    color: black;
    background-color: white;
}

.mw-body {
    background-color: rgba(255,255,255,0.7);
}
body {
    background-color: white !important;
    background-image: url('https://bitlair.nl/images/3/3a/Bg.png')
}
#mw-page-base {
    background-image: linear-gradient(#f6f6f6 50%, rgba(255,255,255,0) 100%);
}


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

#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";
}