Update builder2.html
Browse files- builder2.html +7 -4
builder2.html
CHANGED
@@ -34,7 +34,13 @@
|
|
34 |
}
|
35 |
/* Стили для контейнера управления */
|
36 |
.controls-container {
|
37 |
-
background-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
}
|
39 |
/* Стили для кнопки "Скачать HTML" */
|
40 |
#export-html {
|
@@ -53,7 +59,6 @@
|
|
53 |
/* Стили для надписей возле галочек */
|
54 |
.controls-container label {
|
55 |
color: #fff; /* Белый цвет текста */
|
56 |
-
margin-right: 15px; /* Отступ между галочками */
|
57 |
}
|
58 |
</style>
|
59 |
</head>
|
@@ -158,12 +163,10 @@
|
|
158 |
|
159 |
<!-- Интерфейс для выбора скриптов -->
|
160 |
<div class="controls-container">
|
161 |
-
<br>
|
162 |
<label><input type="checkbox" id="script1-checkbox" value="https://example.com/your-additional-script1.js"> Соб. хост</label>
|
163 |
<label><input type="checkbox" id="script2-checkbox" value="https://example.com/your-additional-script2.js"> ВК + АП</label>
|
164 |
<label><input type="checkbox" id="script3-checkbox" value="https://example.com/your-additional-script3.js"> Виджет Тильда</label>
|
165 |
<label><input type="checkbox" id="script4-checkbox" value="https://example.com/your-additional-script4.js"> Виджет Геткурс</label>
|
166 |
-
<br><br>
|
167 |
<button id="export-html">Скачать HTML</button>
|
168 |
</div>
|
169 |
|
|
|
34 |
}
|
35 |
/* Стили для контейнера управления */
|
36 |
.controls-container {
|
37 |
+
background-color: #403e3e; /* Черный фон контейнера */
|
38 |
+
padding: 15px 0; /* Отступы сверху и снизу */
|
39 |
+
text-align: center; /* Выравнивание по центру */
|
40 |
+
}
|
41 |
+
.controls-container label,
|
42 |
+
.controls-container button {
|
43 |
+
margin-left: 15px; /* Отступ слева */
|
44 |
}
|
45 |
/* Стили для кнопки "Скачать HTML" */
|
46 |
#export-html {
|
|
|
59 |
/* Стили для надписей возле галочек */
|
60 |
.controls-container label {
|
61 |
color: #fff; /* Белый цвет текста */
|
|
|
62 |
}
|
63 |
</style>
|
64 |
</head>
|
|
|
163 |
|
164 |
<!-- Интерфейс для выбора скриптов -->
|
165 |
<div class="controls-container">
|
|
|
166 |
<label><input type="checkbox" id="script1-checkbox" value="https://example.com/your-additional-script1.js"> Соб. хост</label>
|
167 |
<label><input type="checkbox" id="script2-checkbox" value="https://example.com/your-additional-script2.js"> ВК + АП</label>
|
168 |
<label><input type="checkbox" id="script3-checkbox" value="https://example.com/your-additional-script3.js"> Виджет Тильда</label>
|
169 |
<label><input type="checkbox" id="script4-checkbox" value="https://example.com/your-additional-script4.js"> Виджет Геткурс</label>
|
|
|
170 |
<button id="export-html">Скачать HTML</button>
|
171 |
</div>
|
172 |
|