Update table.html
Browse files- table.html +14 -0
table.html
CHANGED
@@ -32,6 +32,20 @@
|
|
32 |
.header .label {
|
33 |
margin: 0; /* Полностью убраны отступы */
|
34 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
</style>
|
37 |
</head>
|
|
|
32 |
.header .label {
|
33 |
margin: 0; /* Полностью убраны отступы */
|
34 |
}
|
35 |
+
button, #filter-clear, #download-json, #take-for-yourself {
|
36 |
+
color: white;
|
37 |
+
background-color: #4CAF50;
|
38 |
+
border: none;
|
39 |
+
cursor: pointer;
|
40 |
+
padding: 10px 20px;
|
41 |
+
font-size: 16px;
|
42 |
+
border-radius: 5px;
|
43 |
+
margin: 5px;
|
44 |
+
transition: background-color 0.3s ease;
|
45 |
+
}
|
46 |
+
button:hover, #filter-clear:hover, #download-json:hover, #take-for-yourself:hover {
|
47 |
+
background-color: #388E3C;
|
48 |
+
}
|
49 |
|
50 |
</style>
|
51 |
</head>
|