Spaces:
Sleeping
Sleeping
Update styles.css
Browse files- styles.css +22 -13
styles.css
CHANGED
@@ -1,15 +1,24 @@
|
|
1 |
-
/*
|
2 |
-
|
3 |
font-family: Arial, sans-serif;
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
}
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
10 |
}
|
11 |
|
12 |
-
/*
|
13 |
.gr-textbox textarea {
|
14 |
width: 100%;
|
15 |
padding: 10px;
|
@@ -18,21 +27,21 @@
|
|
18 |
border-radius: 5px;
|
19 |
}
|
20 |
|
21 |
-
/*
|
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: #
|
29 |
margin-top: 10px;
|
30 |
}
|
31 |
|
32 |
-
/*
|
33 |
.gr-copy-btn {
|
34 |
background-color: #007bff;
|
35 |
-
color: #
|
36 |
border: none;
|
37 |
border-radius: 5px;
|
38 |
padding: 8px 16px;
|
@@ -42,4 +51,4 @@
|
|
42 |
|
43 |
.gr-copy-btn:hover {
|
44 |
background-color: #0056b3;
|
45 |
-
}
|
|
|
1 |
+
/* Body style */
|
2 |
+
body {
|
3 |
font-family: Arial, sans-serif;
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
background-color: #f9f9f9;
|
7 |
+
}
|
8 |
+
|
9 |
+
/* Container style */
|
10 |
+
.container {
|
11 |
+
padding: 20px;
|
12 |
}
|
13 |
|
14 |
+
/* Title style */
|
15 |
+
.title {
|
16 |
+
font-size: 24px;
|
17 |
+
margin-bottom: 20px;
|
18 |
+
color: #333;
|
19 |
}
|
20 |
|
21 |
+
/* Input textbox style */
|
22 |
.gr-textbox textarea {
|
23 |
width: 100%;
|
24 |
padding: 10px;
|
|
|
27 |
border-radius: 5px;
|
28 |
}
|
29 |
|
30 |
+
/* Output textbox style */
|
31 |
+
.gr-textbox.gr-output textarea {
|
32 |
width: 100%;
|
33 |
padding: 10px;
|
34 |
font-size: 16px;
|
35 |
border: 1px solid #ccc;
|
36 |
border-radius: 5px;
|
37 |
+
background-color: #fff;
|
38 |
margin-top: 10px;
|
39 |
}
|
40 |
|
41 |
+
/* Copy button style */
|
42 |
.gr-copy-btn {
|
43 |
background-color: #007bff;
|
44 |
+
color: #fff;
|
45 |
border: none;
|
46 |
border-radius: 5px;
|
47 |
padding: 8px 16px;
|
|
|
51 |
|
52 |
.gr-copy-btn:hover {
|
53 |
background-color: #0056b3;
|
54 |
+
}
|