|
Метки: очистка ручная отмена |
| Строка 1: |
Строка 1: |
| $(function() {
| |
| document.body.style.backgroundColor = "#121212";
| |
| document.body.style.color = "#e0e0e0";
| |
|
| |
|
| $("table").css({
| |
| "border-collapse": "collapse",
| |
| "border-radius": "12px",
| |
| "overflow": "hidden",
| |
| "box-shadow": "0 2px 6px rgba(0,0,0,0.6)"
| |
| });
| |
|
| |
| $("table tr:nth-child(even)").css("background-color", "#1e1e1e");
| |
| $("table tr:nth-child(odd)").css("background-color", "#2a2a2a");
| |
|
| |
| $("table th").css({
| |
| "background-color": "#333333",
| |
| "color": "#ffffff",
| |
| "padding": "8px"
| |
| });
| |
|
| |
| $("table td").css({
| |
| "padding": "6px 10px",
| |
| "color": "#e0e0e0"
| |
| });
| |
|
| |
| $("a").css({
| |
| "color": "#8ab4f8",
| |
| "text-decoration": "none",
| |
| "transition": "color 0.3s"
| |
| }).hover(
| |
| function() { $(this).css("color", "#f28b82"); },
| |
| function() { $(this).css("color", "#8ab4f8"); }
| |
| );
| |
|
| |
| $("h1, h2, h3").css({
| |
| "color": "#ffffff",
| |
| "border-bottom": "2px solid #333333",
| |
| "padding-bottom": "4px"
| |
| });
| |
|
| |
| $("blockquote").css({
| |
| "border-left": "4px solid #8ab4f8",
| |
| "padding": "6px 12px",
| |
| "background-color": "#1e1e1e",
| |
| "border-radius": "8px",
| |
| "color": "#e0e0e0"
| |
| });
| |
| });
| |