Anonymous

MediaWiki:Common.css: Difference between revisions

From OER in Education
no edit summary
No edit summary
No edit summary
Line 195: Line 195:


.bubble-green {
.bubble-green {
background:#075698; /* default background for browsers without gradient support */
background: green; /* default background for browsers without gradient support */
/* css3 */
/* css3 */
background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(green));
background:-moz-linear-gradient(#2e88c4, #075698);
background:-moz-linear-gradient(#2e88c4, green);
background:-o-linear-gradient(#2e88c4, #075698);
background:-o-linear-gradient(#2e88c4,green);
background:linear-gradient(#2e88c4, #075698);
background:linear-gradient(#2e88c4, green);
}
}


Line 207: Line 207:
}
}


.bubble-red {
.bubble-purple {
background:#075698; /* default background for browsers without gradient support */
background:#075698; /* default background for browsers without gradient support */
/* css3 */
/* css3 */
Line 216: Line 216:
}
}


.bubble-red:after {
.bubble-purple:after {
border-color:#075698 transparent;  
border-color:#075698 transparent;  
}
}