MediaWiki:Common.css: Difference between revisions

From Hackerspace Amersfoort
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: #spacestatus { position: relative; top: -32px; left: 43px; border-radius: 3px; width: 80px; text-align: center; transform: ...")
 
mNo edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


#spacestatus { position: relative; top: -32px; left: 43px; border-radius: 3px; width: 80px; text-align: center; transform: rotate(-5deg); position: relative; top: -32px; left: 43px; box-shadow: rgba(100,100,100,.6) 2px 2px 5px; animate: }
#spacestatus {
#spacestatus.open { opacity: 1; background: lime; color: black; }
    width: 80px;
#spacestatus.closed { opacity: 1; background: red; color: white; }
    position: relative;
    top: -32px;
    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: red;
    color: white;
}
 
#spacestatus.open:before {
    content: "gesloten";
}

Revision as of 20:09, 5 July 2016

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

#spacestatus {
    width: 80px;
    position: relative;
    top: -32px;
    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: red;
    color: white;
}

#spacestatus.open:before {
    content: "gesloten";
}