Update pages.html
Browse files- pages.html +51 -38
pages.html
CHANGED
@@ -454,44 +454,57 @@ z-index: 1000; /* Убедитесь, что кнопка находится п
|
|
454 |
|
455 |
<style>
|
456 |
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
</style>
|
496 |
|
497 |
<h1>Редактор медиа листов</h1>
|
|
|
454 |
|
455 |
<style>
|
456 |
|
457 |
+
.container {
|
458 |
+
display: flex;
|
459 |
+
justify-content: space-between;
|
460 |
+
align-items: flex-start;
|
461 |
+
}
|
462 |
+
|
463 |
+
.input-row {
|
464 |
+
display: flex;
|
465 |
+
flex-direction: column;
|
466 |
+
gap: 10px;
|
467 |
+
margin-top: 20px;
|
468 |
+
width: 40%; /* Установите ширину по вашему усмотрению */
|
469 |
+
}
|
470 |
+
|
471 |
+
.input-row input, .input-row textarea {
|
472 |
+
padding: 10px;
|
473 |
+
font-size: 16px;
|
474 |
+
border: 1px solid #ccc;
|
475 |
+
border-radius: 5px;
|
476 |
+
}
|
477 |
+
|
478 |
+
#jsoneditor {
|
479 |
+
width: 50%;
|
480 |
+
height: 300px;
|
481 |
+
margin-left: 20px; /* Отодвигаем JSON редактор вправо */
|
482 |
+
}
|
483 |
+
|
484 |
+
#addVideo, #saveToClipboard {
|
485 |
+
color: white;
|
486 |
+
background-color: #4CAF50;
|
487 |
+
border: none;
|
488 |
+
cursor: pointer;
|
489 |
+
padding: 10px 20px;
|
490 |
+
font-size: 16px;
|
491 |
+
border-radius: 5px;
|
492 |
+
margin-top: 20px;
|
493 |
+
}
|
494 |
+
|
495 |
+
#addVideo:hover, #saveToClipboard:hover {
|
496 |
+
background-color: #388E3C;
|
497 |
+
}
|
498 |
+
|
499 |
+
.jsoneditor-menu {
|
500 |
+
background-color: #4CAF50 !important;
|
501 |
+
border-bottom: 1px solid #388E3C !important;
|
502 |
+
}
|
503 |
+
|
504 |
+
.jsoneditor {
|
505 |
+
border: 1px #4CAF50 !important;
|
506 |
+
border-bottom: 2px solid #388E3C !important;
|
507 |
+
}
|
508 |
</style>
|
509 |
|
510 |
<h1>Редактор медиа листов</h1>
|