Kean Edwards commited on
Commit
4dcdb9f
1 Parent(s): baaccf0

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +30 -0
style.css CHANGED
@@ -26,3 +26,33 @@ p {
26
  .card p:last-child {
27
  margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  .card p:last-child {
27
  margin-bottom: 0;
28
  }
29
+
30
+ #prompt-form input[type="text"] {
31
+ width: calc(100% - 24px); /* Full width minus padding */
32
+ padding: 10px;
33
+ margin-top: 10px;
34
+ margin-bottom: 10px;
35
+ border: 1px solid #ccc;
36
+ border-radius: 4px;
37
+ box-sizing: border-box; /* Makes sure the padding doesn't affect the final computed width */
38
+ }
39
+ #prompt-form button {
40
+ background-color: #007BFF;
41
+ color: white;
42
+ padding: 10px 20px;
43
+ margin: 10px 0;
44
+ border: none;
45
+ border-radius: 4px;
46
+ cursor: pointer;
47
+ }
48
+ #prompt-form button:hover {
49
+ background-color: #0056b3;
50
+ }
51
+ #logoOutput {
52
+ margin-top: 20px;
53
+ }
54
+ #logoOutput img {
55
+ max-width: 100%;
56
+ height: auto;
57
+ border-radius: 4px;
58
+ }