Dantes (обсуждение | вклад) Нет описания правки Метка: отменено |
Dantes (обсуждение | вклад) Нет описания правки Метка: отменено |
||
| Строка 1: | Строка 1: | ||
$(function() { | $(function() { | ||
document.body.style.backgroundColor = "#f9fafc"; | |||
document.body.style.color = "#202124"; | |||
$("table").css({ | |||
"border-collapse": "collapse", | |||
"border-radius": "12px", | |||
"overflow": "hidden", | |||
"box-shadow": "0 2px 6px rgba(0,0,0,0.1)" | |||
}); | |||
$("table tr:nth-child(even)").css("background-color", "#f1f3f4"); | |||
$("table tr:nth-child(odd)").css("background-color", "#ffffff"); | |||
$("table th").css({ | |||
"background-color": "#4285f4", | |||
"color": "white", | |||
"padding": "8px" | |||
}); | |||
$("table td").css({ | |||
"padding": "6px 10px" | |||
}); | |||
$("a").css({ | |||
"color": "#1a73e8", | |||
"text-decoration": "none", | |||
"transition": "color 0.3s" | |||
}).hover( | }).hover( | ||
function() { $(this).css("color", "#d93025"); }, | |||
function() { $(this).css("color", "#1a73e8"); } | |||
); | |||
$("h1, h2, h3").css({ | |||
"color": "#202124", | |||
"border-bottom": "2px solid #e8eaed", | |||
"padding-bottom": "4px" | |||
}); | }); | ||
$("blockquote").css({ | |||
"border-left": "4px solid #4285f4", | |||
"padding": "6px 12px", | |||
"background-color": "#f1f3f4", | |||
"border-radius": "8px" | |||
}); | |||
}); | }); | ||
Версия от 19:26, 23 августа 2025
$(function() {
document.body.style.backgroundColor = "#f9fafc";
document.body.style.color = "#202124";
$("table").css({
"border-collapse": "collapse",
"border-radius": "12px",
"overflow": "hidden",
"box-shadow": "0 2px 6px rgba(0,0,0,0.1)"
});
$("table tr:nth-child(even)").css("background-color", "#f1f3f4");
$("table tr:nth-child(odd)").css("background-color", "#ffffff");
$("table th").css({
"background-color": "#4285f4",
"color": "white",
"padding": "8px"
});
$("table td").css({
"padding": "6px 10px"
});
$("a").css({
"color": "#1a73e8",
"text-decoration": "none",
"transition": "color 0.3s"
}).hover(
function() { $(this).css("color", "#d93025"); },
function() { $(this).css("color", "#1a73e8"); }
);
$("h1, h2, h3").css({
"color": "#202124",
"border-bottom": "2px solid #e8eaed",
"padding-bottom": "4px"
});
$("blockquote").css({
"border-left": "4px solid #4285f4",
"padding": "6px 12px",
"background-color": "#f1f3f4",
"border-radius": "8px"
});
});