-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
142 lines (119 loc) · 2.23 KB
/
styles.css
File metadata and controls
142 lines (119 loc) · 2.23 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
/* General Styles */
body {
font-family: 'Poppins', sans-serif;
background-color: #f4f7f6;
color: #333;
line-height: 1.6;
margin: 0;
}
header {
background-color: #2c3e50;
color: #fff;
text-align: center;
padding: 1rem 0;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
main {
padding: 1rem;
}
.container {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}
/* Card Styles */
.card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
}
.card h3 {
margin-top: 0;
color: #34495e;
}
/* Form Styles */
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
}
.form-group input {
width: 100%;
padding: 0.8rem;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #3498db;
color: #fff;
border: none;
padding: 0.8rem 1.2rem;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
/* Marketplace Styles */
#marketplace-list .item {
border: 1px solid #eee;
padding: 1rem;
margin-bottom: 1rem;
border-radius: 4px;
display: flex;
justify-content: space-between;
align-items: center;
}
#marketplace-list .item .info p {
margin: 0.2rem 0;
}
#marketplace-list .item .actions button {
margin-left: 0.5rem;
}
/* Footer */
footer {
text-align: center;
padding: 1rem 0;
background-color: #2c3e50;
color: #fff;
position: relative;
bottom: 0;
width: 100%;
}
@media (min-width: 768px) {
.container {
grid-template-columns: repeat(2, 1fr);
}
#corporate-donor, #ngo-recipient {
grid-column: span 1;
}
#mcp-integrations {
grid-column: span 2;
}
}
@media (min-width: 1024px) {
.container {
grid-template-columns: repeat(3, 1fr);
max-width: 1200px;
margin: 0 auto;
}
#corporate-donor {
grid-column: span 1;
}
#ngo-recipient {
grid-column: span 1;
}
#mcp-integrations {
grid-column: span 1;
}
}