-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdonate.css
79 lines (67 loc) · 1.15 KB
/
donate.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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: #f4f4f4;
color: #333;
}
.header, .footer {
background: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.donation-section {
background: #fff;
padding: 20px;
margin: 20px 0;
}
h1, p {
text-align: center;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
}
.form-group textarea {
height: 100px;
}
.donate-button {
display: block;
width: 100%;
padding: 10px;
border: 0;
background: #333;
color: #fff;
cursor: pointer;
}
.donate-button:hover {
background: #555
}
/* PayPal Button Specific Styles */
#paypal-button-container {
text-align: center;
}
/* Responsive Styles */
@media only screen and (max-width: 768px) {
.container {
width: 95%;
}
}