skanaujiya commited on
Commit
2510953
·
verified ·
1 Parent(s): 475d256

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -12,7 +12,7 @@ st.markdown("""
12
  Enter a command in the input field, and the output will be displayed below.
13
  """)
14
 
15
- # Create a user-friendly input field with a placeholder and description
16
  command = st.text_input("💻 Enter a terminal command:", placeholder="e.g., ls, pwd, echo Hello World")
17
 
18
  # Create a button to execute the command
@@ -52,8 +52,11 @@ st.markdown("""
52
  .css-18e3th9 {background-color: #34495e;}
53
  h1 {color: #3498db;}
54
  .stTextInput input {
 
 
55
  border: 1px solid #2980b9;
56
  background-color: #ecf0f1;
 
57
  }
58
  .stButton button {
59
  background-color: #27ae60;
 
12
  Enter a command in the input field, and the output will be displayed below.
13
  """)
14
 
15
+ # Create a larger input field with enhanced visibility
16
  command = st.text_input("💻 Enter a terminal command:", placeholder="e.g., ls, pwd, echo Hello World")
17
 
18
  # Create a button to execute the command
 
52
  .css-18e3th9 {background-color: #34495e;}
53
  h1 {color: #3498db;}
54
  .stTextInput input {
55
+ height: 50px; /* Increase input box height */
56
+ font-size: 18px; /* Increase font size */
57
  border: 1px solid #2980b9;
58
  background-color: #ecf0f1;
59
+ color: black; /* Set text color to black for visibility */
60
  }
61
  .stButton button {
62
  background-color: #27ae60;