12,782
edits
No edit summary |
No edit summary |
||
| Line 195: | Line 195: | ||
.bubble-green { | .bubble-green { | ||
background: | background: green; /* default background for browsers without gradient support */ | ||
/* css3 */ | /* css3 */ | ||
background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to( | background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(green)); | ||
background:-moz-linear-gradient(#2e88c4, | background:-moz-linear-gradient(#2e88c4, green); | ||
background:-o-linear-gradient(#2e88c4, | background:-o-linear-gradient(#2e88c4,green); | ||
background:linear-gradient(#2e88c4, | background:linear-gradient(#2e88c4, green); | ||
} | } | ||
| Line 207: | Line 207: | ||
} | } | ||
.bubble- | .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- | .bubble-purple:after { | ||
border-color:#075698 transparent; | border-color:#075698 transparent; | ||
} | } | ||