MediaWiki:Vector.css: различия между версиями
Перейти к навигации
Перейти к поиску
SAS (обсуждение | вклад) м |
SAS (обсуждение | вклад) м |
||
Строка 1: | Строка 1: | ||
/* Размещённый здесь CSS будет применяться к векторной теме оформления */ | /* Размещённый здесь CSS будет применяться к векторной теме оформления */ | ||
− | .gradient-block { | + | div.gradient-block { |
border: 1px solid #AAA; | border: 1px solid #AAA; | ||
padding: 8px; | padding: 8px; | ||
Строка 13: | Строка 13: | ||
background: -webkit-gradient(linear, left top, left bottom, from(#A3BCD4), to(#CEDBE7)); | background: -webkit-gradient(linear, left top, left bottom, from(#A3BCD4), to(#CEDBE7)); | ||
background: -moz-linear-gradient(top, #A3BCD4, #CEDBE7); | background: -moz-linear-gradient(top, #A3BCD4, #CEDBE7); | ||
+ | } | ||
+ | |||
+ | table.gradient-block { | ||
+ | width: 100%; | ||
+ | text-align: center; | ||
+ | border: 1px solid #AAA; | ||
+ | background: #A3BCD4; | ||
+ | padding: 0px 4px 0px 4px; | ||
+ | border-radius: 4px 4px 0 0; | ||
+ | -moz-border-radius: 4px 4px 0 0; | ||
+ | -webkit-border-radius: 4px 4px 0 0; | ||
+ | background: -o-linear-gradient(top, #A3BCD4, #CEDBE7); | ||
+ | background: -webkit-gradient(linear, left top, left bottom, from(#A3BCD4), to(#CEDBE7)); | ||
+ | background: -moz-linear-gradient(top, #A3BCD4, #CEDBE7); | ||
} | } |
Версия 10:41, 4 июня 2012
/* Размещённый здесь CSS будет применяться к векторной теме оформления */
div.gradient-block {
border: 1px solid #AAA;
padding: 8px;
text-align: center;
margin: 4px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
background: #A3BCD4;
background: -o-linear-gradient(top, #A3BCD4, #CEDBE7);
background: -webkit-gradient(linear, left top, left bottom, from(#A3BCD4), to(#CEDBE7));
background: -moz-linear-gradient(top, #A3BCD4, #CEDBE7);
}
table.gradient-block {
width: 100%;
text-align: center;
border: 1px solid #AAA;
background: #A3BCD4;
padding: 0px 4px 0px 4px;
border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
-webkit-border-radius: 4px 4px 0 0;
background: -o-linear-gradient(top, #A3BCD4, #CEDBE7);
background: -webkit-gradient(linear, left top, left bottom, from(#A3BCD4), to(#CEDBE7));
background: -moz-linear-gradient(top, #A3BCD4, #CEDBE7);
}