djrana commited on
Commit
b65faa2
1 Parent(s): 7de1eac

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +45 -0
styles.css ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Customize the title */
2
+ .gr-host {
3
+ font-family: Arial, sans-serif;
4
+ background-color: #f0f0f0;
5
+ }
6
+
7
+ .gr-host h1 {
8
+ font-size: 36px;
9
+ color: #333333;
10
+ }
11
+
12
+ /* Style the input textbox */
13
+ .gr-textbox textarea {
14
+ width: 100%;
15
+ padding: 10px;
16
+ font-size: 16px;
17
+ border: 1px solid #ccc;
18
+ border-radius: 5px;
19
+ }
20
+
21
+ /* Style the output textbox */
22
+ .gr-textbox.gr-output {
23
+ width: 100%;
24
+ padding: 10px;
25
+ font-size: 16px;
26
+ border: 1px solid #ccc;
27
+ border-radius: 5px;
28
+ background-color: #f9f9f9;
29
+ margin-top: 10px;
30
+ }
31
+
32
+ /* Style the copy button */
33
+ .gr-copy-btn {
34
+ background-color: #007bff;
35
+ color: #ffffff;
36
+ border: none;
37
+ border-radius: 5px;
38
+ padding: 8px 16px;
39
+ font-size: 14px;
40
+ cursor: pointer;
41
+ }
42
+
43
+ .gr-copy-btn:hover {
44
+ background-color: #0056b3;
45
+ }