-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (34 loc) · 1.01 KB
/
Copy pathpopup.html
File metadata and controls
35 lines (34 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Настройки скрытых курсов</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 10px;
width: 300px;
}
textarea {
resize: vertical;
width: 100%;
padding: 8px;
margin-bottom: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
button {
width: 100%;
padding: 8px;
}
</style>
</head>
<body>
<h2>Скрытые курсы</h2>
<textarea id="bannedList" rows="10" placeholder="Введите заголовки через запятую"></textarea>
<button id="saveButton">Сохранить</button>
<script src="popup.js"></script>
</body>
</html>