privateuserh commited on
Commit
b11e1d2
·
verified ·
1 Parent(s): bec63f7

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +5 -4
style.css CHANGED
@@ -4,15 +4,16 @@ header { text-align: center; border-bottom: 2px solid #e0e0e0; padding-bottom: 2
4
  header h1 { color: #0056b3; margin: 0; }
5
  h2 { color: #0056b3; margin-top: 30px; margin-bottom: 15px; border-top: 1px solid #eee; padding-top: 20px; }
6
  h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
7
- textarea { width: 100%; height: 120px; padding: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; box-sizing: border-box; resize: vertical; }
 
8
  button { display: inline-block; width: auto; padding: 10px 20px; background-color: #007bff; color: white; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; margin-top: 15px; transition: background-color: 0.3s; }
9
  button:hover { background-color: #0056b3; }
10
- #uploadForm button { width: 100%; padding: 15px; }
11
- #uploadForm input[type="file"] { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }
12
  .result-container, .history-container, .reports-container { background-color: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 5px; padding: 1px 20px; min-height: 50px; }
13
  .history-entry, .report-entry { border-bottom: 1px solid #eee; padding: 15px 0; }
14
  .history-entry:last-child, .report-entry:last-child { border-bottom: none; }
15
- .report-entry a { text-decoration: none; color: #0056b3; font-weight: bold; }
16
  .report-entry p { margin: 5px 0 0 0; font-size: 14px; }
17
  #uploadStatus { margin-top: 15px; font-size: 14px; }
18
  footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 2px solid #e0e0e0; font-size: 14px; color: #777; }
 
4
  header h1 { color: #0056b3; margin: 0; }
5
  h2 { color: #0056b3; margin-top: 30px; margin-bottom: 15px; border-top: 1px solid #eee; padding-top: 20px; }
6
  h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
7
+ textarea, input[type="text"] { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; box-sizing: border-box; margin-bottom: 15px; }
8
+ textarea#reportBody { height: 200px; resize: vertical; }
9
  button { display: inline-block; width: auto; padding: 10px 20px; background-color: #007bff; color: white; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; margin-top: 15px; transition: background-color: 0.3s; }
10
  button:hover { background-color: #0056b3; }
11
+ button:disabled { background-color: #a0c3e6; cursor: not-allowed; }
12
+ #uploadForm button { width: 100%; padding: 15px; margin-top: 0; }
13
  .result-container, .history-container, .reports-container { background-color: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 5px; padding: 1px 20px; min-height: 50px; }
14
  .history-entry, .report-entry { border-bottom: 1px solid #eee; padding: 15px 0; }
15
  .history-entry:last-child, .report-entry:last-child { border-bottom: none; }
16
+ .report-entry h3 { margin: 0; color: #0056b3; }
17
  .report-entry p { margin: 5px 0 0 0; font-size: 14px; }
18
  #uploadStatus { margin-top: 15px; font-size: 14px; }
19
  footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 2px solid #e0e0e0; font-size: 14px; color: #777; }