Nurisslam commited on
Commit
eda9c0d
·
verified ·
1 Parent(s): 6d562d7

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +21 -8
style.css CHANGED
@@ -1,19 +1,32 @@
1
  body {
2
  background-color: white;
3
  color: black;
 
4
  }
5
 
6
- #title {
7
- text-align: center;
8
- font-size: 28px;
9
- font-weight: bold;
10
- margin-bottom: 20px;
 
 
 
 
 
 
 
 
 
 
 
11
  }
12
 
13
  #send-button {
14
- background-color: #007BFF !important;
15
  color: white !important;
16
- border-radius: 8px;
17
- padding: 10px 20px;
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
  }