DmitrMakeev commited on
Commit
f42f9f3
1 Parent(s): 37943c9

Update se_mes_im2.html

Browse files
Files changed (1) hide show
  1. 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
- body {
9
- font-family: Arial, sans-serif;
10
- text-align: center;
11
- background-color: #f0f0f0;
12
- margin: 0;
13
- padding: 0;
14
- }
15
- h1 {
16
- background-color: #4CAF50;
17
- color: white;
18
- padding: 20px;
19
- margin: 0;
20
- border-bottom: 2px solid #388E3C;
21
- }
22
- .input-row {
23
- display: flex;
24
- justify-content: center;
25
- gap: 10px;
26
- margin-top: 20px;
27
- }
28
- .input-row input, .input-row textarea {
29
- padding: 10px;
30
- font-size: 16px;
31
- border: 1px solid #ccc;
32
- border-radius: 5px;
33
- }
34
- #messageInput {
35
- width: 80%;
36
- margin-top: 20px;
37
- }
38
- #progressBarContainer {
39
- width: 80%;
40
- margin: 20px auto;
41
- }
42
- #progressBar {
43
- width: 100%;
44
- background-color: #ddd;
45
- }
46
- #progress {
47
- width: 0%;
48
- height: 30px;
49
- background-color: #4CAF50;
50
- text-align: center;
51
- line-height: 30px;
52
- color: white;
53
- }
54
- #sendButton {
55
- color: white;
56
- background-color: #4CAF50;
57
- border: none;
58
- cursor: pointer;
59
- padding: 10px 20px;
60
- font-size: 16px;
61
- border-radius: 5px;
62
- margin-top: 20px;
63
- }
64
- #sendButton:hover {
65
- background-color: #388E3C;
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>