Add comments and styling enhancements to Fibonacci generator application

This commit is contained in:
vista-man
2025-01-27 20:37:24 +01:00
parent 0f81802c1b
commit 5fd81c8920
3 changed files with 26 additions and 16 deletions

View File

@@ -1,3 +1,4 @@
/* Style for the body element */
body {
font-family: Arial, sans-serif;
display: flex;
@@ -9,19 +10,23 @@ body {
background-color: #f0f0f0;
}
/* Style for the h1 element */
h1 {
color: #333;
}
/* Style for the label, input, and button elements */
label, input, button {
margin: 10px 0;
}
/* Style for the input and button elements */
input, button {
padding: 10px;
font-size: 16px;
}
/* Style for the button element */
button {
background-color: #007BFF;
color: white;
@@ -29,10 +34,12 @@ button {
cursor: pointer;
}
/* Style for the button element when hovered */
button:hover {
background-color: #0056b3;
}
/* Style for the paragraph displaying the result */
#fibonacciResult {
margin-top: 20px;
font-size: 18px;