DmitrMakeev
commited on
Commit
•
f42f9f3
1
Parent(s):
37943c9
Update se_mes_im2.html
Browse files- se_mes_im2.html +61 -59
se_mes_im2.html
CHANGED
@@ -5,65 +5,67 @@
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Send Messages with Image</title>
|
7 |
<style>
|
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 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
67 |
</style>
|
68 |
</head>
|
69 |
<body>
|
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Send Messages with Image</title>
|
7 |
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
text-align: center;
|
11 |
+
background-color: #f0f0f0;
|
12 |
+
margin: 0;
|
13 |
+
padding: 0;
|
14 |
+
min-height: 250px; /* Устанавливаем минимальную высоту страницы */
|
15 |
+
}
|
16 |
+
h1 {
|
17 |
+
background-color: #4CAF50;
|
18 |
+
color: white;
|
19 |
+
padding: 20px;
|
20 |
+
margin: 0;
|
21 |
+
border-bottom: 2px solid #388E3C;
|
22 |
+
}
|
23 |
+
.input-row {
|
24 |
+
display: flex;
|
25 |
+
justify-content: center;
|
26 |
+
gap: 10px;
|
27 |
+
margin-top: 20px;
|
28 |
+
}
|
29 |
+
.input-row input, .input-row textarea {
|
30 |
+
padding: 10px;
|
31 |
+
font-size: 16px;
|
32 |
+
border: 1px solid #ccc;
|
33 |
+
border-radius: 5px;
|
34 |
+
}
|
35 |
+
#messageInput {
|
36 |
+
width: 80%;
|
37 |
+
margin-top: 20px;
|
38 |
+
height: 40px; /* Устанавливаем высоту поля ввода текста */
|
39 |
+
}
|
40 |
+
#progressBarContainer {
|
41 |
+
width: 80%;
|
42 |
+
margin: 20px auto;
|
43 |
+
}
|
44 |
+
#progressBar {
|
45 |
+
width: 100%;
|
46 |
+
background-color: #ddd;
|
47 |
+
}
|
48 |
+
#progress {
|
49 |
+
width: 0%;
|
50 |
+
height: 30px;
|
51 |
+
background-color: #4CAF50;
|
52 |
+
text-align: center;
|
53 |
+
line-height: 30px;
|
54 |
+
color: white;
|
55 |
+
}
|
56 |
+
#sendButton {
|
57 |
+
color: white;
|
58 |
+
background-color: #4CAF50;
|
59 |
+
border: none;
|
60 |
+
cursor: pointer;
|
61 |
+
padding: 10px 20px;
|
62 |
+
font-size: 16px;
|
63 |
+
border-radius: 5px;
|
64 |
+
margin-top: 20px;
|
65 |
+
}
|
66 |
+
#sendButton:hover {
|
67 |
+
background-color: #388E3C;
|
68 |
+
}
|
69 |
</style>
|
70 |
</head>
|
71 |
<body>
|