-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_ngo.css
172 lines (142 loc) · 2.88 KB
/
style_ngo.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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* styles.css */
/* Global Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #f9f9f9;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
margin-bottom: 10px;
color: #212121;
}
a {
text-decoration: none;
color: #337ab7;
transition: color 0.2s ease;
}
a:hover {
color: #23527c;
}
/* Header Styles */
header {
background-color: #333;
padding: 20px;
text-align: center;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
}
header nav li {
margin-right: 20px;
}
header nav a {
color: #fff;
transition: color 0.2s ease;
}
header nav a:hover {
color: #ccc;
}
/* Main Styles */
main {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
}
section {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h2 {
margin-top: 0;
font-size: 24px;
font-weight: 700;
color: #212121;
}
/* Form Styles */
form {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
label {
margin-bottom: 10px;
font-size: 16px;
font-weight: 500;
color: #333;
}
input[type="number"] {
width: 100%;
height: 40px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 10px;
font-size: 16px;
font-weight: 500;
color: #333;
}
input[type="number"]:focus {
border-color: #337ab7;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
button {
width: 100%;
height: 40px;
background-color: #337ab7;
color: #fff;
border: none;
border-radius: 10px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: background-color 0.2s ease;
}
button:hover {
background-color: #23527c;
}
/* Payment Options Styles */
.payment-options {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.payment-options li {
margin-right: 20px;
margin-bottom: 10px;
}
.payment-options a {
font-size: 16px;
font-weight: 500;
color: #337ab7;
transition: color 0.2s ease;
}
.payment-options a:hover {
color: #23527c;
}
.payment-options i {
font-size: 24px;
margin-right: 10px;
color: #337ab7;
}
.payment-options i:hover {
color: #23527c;
}