-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
77 lines (69 loc) · 1.47 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* styles.css */
/* General body styles */
body {
font-family: Arial, sans-serif;
background-color: #f4f7fa;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
border: 2px solid black;
min-height: 100vh;
position: relative;
}
/* Container for the form */
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Heading styles */
h1 {
text-align: center;
color: #4a4a4a;
position: absolute;
top: 25%;
}
/* Form styles */
form {
display: flex;
flex-direction: column;
gap: 15px; /* Space between form elements */
}
/* Input styles */
input[type="number"] {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
}
/* Button styles */
button {
padding: 10px;
border: none;
border-radius: 4px;
background-color: #4CAF50; /* Green background */
color: white; /* White text */
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s; /* Smooth transition */
}
/* Button hover effect */
button:hover {
background-color: #45a049; /* Darker green on hover */
}
/* Result display styles */
#result {
margin-top: 20px;
text-align: center;
font-size: 18px;
font-weight: bold;
position: absolute;
bottom: 40%;
color: #4CAF50; /* Green text for result */
}