AiDeveloper1 commited on
Commit
6d80d61
·
verified ·
1 Parent(s): f516fd7

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +16 -5
static/styles.css CHANGED
@@ -25,22 +25,21 @@ form {
25
  label {
26
  display: block;
27
  margin-bottom: 0.5rem;
28
- font-weight: 16px;
29
  color: #555;
30
  }
31
 
32
- input[type="url"], input[type="text"], input[type="password"] {
33
  width: 100%;
34
  padding: 10px;
35
- border: 0.5rem;
36
  border-radius: 5px;
37
- border: 1px solid #e2e8f0;
38
  background-color: #f8fafc;
39
  font-size: 16px;
40
  box-sizing: border-box;
41
  }
42
 
43
- input[type="url"]:focus, input[type="text"]:focus, input[type="password"]:focus {
44
  outline: none;
45
  border-color: #007bff;
46
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
@@ -74,4 +73,16 @@ textarea {
74
  font-family: monospace;
75
  font-size: 14px;
76
  box-sizing: border-box;
 
 
 
 
 
 
 
 
 
 
 
 
77
  }
 
25
  label {
26
  display: block;
27
  margin-bottom: 0.5rem;
28
+ font-weight: bold; /* Fixed: Changed 'font-weight: 16px' to 'bold' */
29
  color: #555;
30
  }
31
 
32
+ input[type="url"], input[type="email"], input[type="text"], input[type="password"] {
33
  width: 100%;
34
  padding: 10px;
35
+ border: 1px solid #e2e8f0; /* Fixed: Removed invalid '0.5rem' border */
36
  border-radius: 5px;
 
37
  background-color: #f8fafc;
38
  font-size: 16px;
39
  box-sizing: border-box;
40
  }
41
 
42
+ input[type="url"]:focus, input[type="email"]:focus, input[type="text"]:focus, input[type="password"]:focus {
43
  outline: none;
44
  border-color: #007bff;
45
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
 
73
  font-family: monospace;
74
  font-size: 14px;
75
  box-sizing: border-box;
76
+ }
77
+
78
+ #result {
79
+ margin-top: 2rem;
80
+ }
81
+
82
+ #message {
83
+ font-size: 16px;
84
+ padding: 1rem;
85
+ border-radius: 5px;
86
+ background-color: #fff;
87
+ border: 1px solid #e2e8f0;
88
  }