-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylebt2.css
81 lines (69 loc) · 1 KB
/
stylebt2.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
78
79
80
81
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1,
h2 {
color: #ff8c00;
text-align: center;
}
h2 {
margin-top: 30px;
}
p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 30px;
}
ul {
font-size: 18px;
line-height: 1.5;
margin-bottom: 30px;
}
form {
margin-bottom: 30px;
}
label {
font-size: 20px;
}
input[type="number"] {
padding: 10px;
font-size: 20px;
border: none;
border-radius: 5px;
background-color: #f5f5f5;
}
button[type="submit"] {
padding: 10px 20px;
font-size: 20px;
background-color: #ff8c00;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
#result {
font-size: 24px;
margin-top: 20px;
text-align: center;
}
.learn-more-btn {
display: inline-block;
padding: 10px 20px;
font-size: 20px;
background-color: #ff8c00;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 30px;
margin-bottom: 30px;
}
.learn-more-btn:hover {
background-color: #ff7f00;
}