« Utilisateur:Maxim21/common.css » : différence entre les versions
mAucun résumé des modifications |
mAucun résumé des modifications |
||
| Ligne 63 : | Ligne 63 : | ||
} | } | ||
#mp-frame #mp-second-tab table tr td { | #mp-frame #mp-second-tab table tr td { | ||
background-color: dodgerblue; | background: dodgerblue; /* Old browsers */ | ||
background: -moz-linear-gradient(left, dodgerblue 70%, lightgray 100%); /* FF3.6+ */ | |||
background: -webkit-gradient(linear, left top, right top, color-stop(70%,dodgerblue), color-stop(100%,lightgray)); /* Chrome,Safari4+ */ | |||
background: -webkit-linear-gradient(left, dodgerblue 70%,lightgray 100%); /* Chrome10+,Safari5.1+ */ | |||
background: -o-linear-gradient(left, dodgerblue 70%,lightgray 100%); /* Opera 11.10+ */ | |||
background: -ms-linear-gradient(left, dodgerblue 70%,lightgray 100%); /* IE10+ */ | |||
background: linear-gradient(to right, dodgerblue 70%,lightgray 100%); /* W3C */ | |||
} | } | ||
#mp-frame #mp-zero-tab table tr td { | #mp-frame #mp-zero-tab table tr td { | ||
background-color: goldenrod; | background: goldenrod; /* Old browsers */ | ||
background: -moz-linear-gradient(left, lightgray 30%, goldenrod 100%); /* FF3.6+ */ | |||
background: -webkit-gradient(linear, left top, right top, color-stop(30%,lightgray), color-stop(100%,goldenrod)); /* Chrome,Safari4+ */ | |||
background: -webkit-linear-gradient(left, lightgray 30%,goldenrod 100%); /* Chrome10+,Safari5.1+ */ | |||
background: -o-linear-gradient(left, lightgray 30%,goldenrod 100%); /* Opera 11.10+ */ | |||
background: -ms-linear-gradient(left, lightgray 30%,goldenrod 100%); /* IE10+ */ | |||
background: linear-gradient(to right, lightgray 30%,goldenrod 100%); /* W3C */ | |||
} | } | ||