-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (57 loc) · 997 Bytes
/
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
57
58
59
60
61
62
63
/* General body styling */
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
background-color: #f9f9f9;
color: #333;
}
/* Heading style */
h1 {
font-size: 2.8rem;
color: #444;
margin-bottom: 20px;
}
/* Paragraph styling */
p {
font-size: 1.2rem;
margin-bottom: 15px;
}
/* Input and button styling */
input, button {
padding: 10px;
margin: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
input {
width: 300px;
}
/* Button specific styling */
button {
background-color: #007BFF;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
/* Message styling */
.message {
font-size: 1.2rem;
margin-top: 20px;
color: #555;
}
.total{
font-weight: bold;
color: #297af3;
font-size: 2rem;
margin: 50px;
}
.text{
color: #3e4083;
margin-top: 70px;
margin-bottom: 40px;
}