-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonation_request.css
More file actions
151 lines (131 loc) · 3 KB
/
Copy pathdonation_request.css
File metadata and controls
151 lines (131 loc) · 3 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* General Styles */
body {
font-family: "merriweather";
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #2f3640;
color: white;
}
.header1 {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
background-color: #59bc69;
height: 50px;
}
.menu {
display: flex;
align-items: center;
gap: 10px;
}
.menu i {
font-size: 1.2rem; /* Set the size of the menu icon */
}
.menu select {
padding: 5px;
background-color: white;
color: #59bc69;
border-radius: 20px;
border: 1px solid #ddd;
font-size: 1rem;
}
/* Header Buttons */
.header1-buttons {
display: flex;
gap: 15px;
align-items: center; /* Vertically center the buttons and icons */
}
.header1-buttons button {
background-color: #333;
color: white;
border: none;
padding: 8px 15px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 8px; /* Space between icon and text */
transition: background-color 0.3s ease;
font-size: 0.9rem; /* Reduced font size for better alignment */
}
.header1-buttons button i {
font-size: 1.2rem; /* Icon size */
}
.header1-buttons button:hover {
background-color: #1a1a1a;
}
#custcare, #reg {
display: flex;
align-items: center;
gap: 10px;
}
.header2 {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
background: linear-gradient(90deg, rgba(89,188,105,1) 0%, rgba(18,119,64,1) 100%);
height: 120px; /* Slightly increased the height */
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.logo img {
width: 100px; /* Increased the logo size */
height: 100px; /* Adjusted logo height */
margin-right: 30px;
}
.project-name {
font-size: 3.5rem;
color: white;
text-transform: uppercase;
letter-spacing: 3px;
}
.visit-charity-btn {
background-color: #ffc107;
color: #333;
padding: 12px 20px;
border-radius: 30px;
font-size: 1rem;
border: 2px solid gold;
box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
transition: all 0.3s ease;
}
.visit-charity-btn:hover {
background-color: gold;
color: white;
}
/* Donation Form Styles */
.donation-form-container {
width: 400px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
label {
margin: 10px 0 5px;
display: block;
}
select,
input[type="file"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ccc;
}
button[type="submit"] {
width: 100%;
padding: 12px;
background-color: #59bc69;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button[type="submit"]:hover {
background-color: #45a454;
}