-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
56 lines (49 loc) · 1.17 KB
/
style.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
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: Arial, sans-serif;
background-color: #f0f0f0; /* Optional: Added a background color */
}
.container {
text-align: center;
}
input[type="number"] {
padding: 15px; /* Increased padding */
margin: 10px;
border: 2px solid #007bff;
border-radius: 5px;
font-size: 18px; /* Increased font size */
width: 20%; /* Ensure consistent width */
}
button {
padding: 15px 25px; /* Increased padding */
background-color: #007bff;
border: none;
color: white;
border-radius: 5px;
cursor: pointer;
font-size: 18px; /* Increased font size */
margin-top: 5px; /* Adjusted margin */
}
button:hover {
background-color: #0056b3;
}
.logo-container {
margin-bottom: 30px; /* Increased margin */
}
.logo {
width: 200px; /* Significantly increased logo size */
height: auto; /* Maintain aspect ratio */
}
#result {
margin-top: 20px;
font-size: 48px; /* Further increased font size */
font-weight: bold;
color: #007bff;
}