-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdonation.css
More file actions
51 lines (45 loc) · 956 Bytes
/
donation.css
File metadata and controls
51 lines (45 loc) · 956 Bytes
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
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #597298;
color: #333;
text-align: center;
}
.donation {
padding: 40px;
background-color: #cdb9b9;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
margin: 40px auto;
width: 90%;
max-width: 600px;
}
.donation h1 {
font-size: 36px;
margin-bottom: 10px;
color: #333;
}
.donation p {
font-size: 18px;
margin-bottom: 20px;
color: #666;
}
form input, form select, form textarea, form button {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ddd;
font-size: 16px;
}
form button {
background-color: #ff7043;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
form button:hover {
background-color: #ff5722;
}