Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -1,19 +1,32 @@
|
|
1 |
body {
|
2 |
background-color: white;
|
3 |
color: black;
|
|
|
4 |
}
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
|
13 |
#send-button {
|
14 |
-
background-color: #
|
15 |
color: white !important;
|
16 |
-
border-radius:
|
17 |
-
padding: 10px
|
18 |
font-size: 16px;
|
|
|
19 |
}
|
|
|
1 |
body {
|
2 |
background-color: white;
|
3 |
color: black;
|
4 |
+
font-family: Arial, sans-serif;
|
5 |
}
|
6 |
|
7 |
+
#main-container {
|
8 |
+
display: flex;
|
9 |
+
flex-direction: column;
|
10 |
+
align-items: center;
|
11 |
+
justify-content: center;
|
12 |
+
gap: 10px;
|
13 |
+
padding: 40px;
|
14 |
+
}
|
15 |
+
|
16 |
+
.gr-textbox textarea,
|
17 |
+
.gr-textbox input {
|
18 |
+
background-color: #e0e0e0 !important;
|
19 |
+
border-radius: 8px !important;
|
20 |
+
border: none !important;
|
21 |
+
padding: 12px !important;
|
22 |
+
font-size: 16px !important;
|
23 |
}
|
24 |
|
25 |
#send-button {
|
26 |
+
background-color: #6a0dad !important; /* Ярко-фиолетовый */
|
27 |
color: white !important;
|
28 |
+
border-radius: 6px;
|
29 |
+
padding: 10px 24px;
|
30 |
font-size: 16px;
|
31 |
+
align-self: flex-end;
|
32 |
}
|