-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
182 lines (152 loc) · 2.89 KB
/
Copy pathstyle.css
File metadata and controls
182 lines (152 loc) · 2.89 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* Reset & Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Poppins", Arial, sans-serif;
line-height: 1.6;
color: #222;
background-color: #fafafa;
}
/* Container */
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #ff6f61, #ff9671);
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 0 0 60px 60px;
}
.hero .tagline {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 6px 14px;
border-radius: 20px;
font-size: 0.9rem;
margin-bottom: 15px;
}
.hero h1 {
font-size: 3rem;
font-weight: 700;
margin: 10px 0;
}
.hero h1 span {
color: #fff7d6;
}
.hero p {
max-width: 700px;
margin: 0 auto 30px;
opacity: 0.9;
}
.buttons {
margin-bottom: 40px;
}
.btn {
display: inline-block;
text-decoration: none;
padding: 12px 25px;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
}
.btn.primary {
background: white;
color: #ff6f61;
}
.btn.primary:hover {
background: #ffe6e1;
}
.btn.secondary {
border: 2px solid white;
color: white;
margin-left: 15px;
}
.btn.secondary:hover {
background: rgba(255, 255, 255, 0.2);
}
/* Stats */
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin-top: 40px;
}
.stats div h2 {
font-size: 2rem;
font-weight: bold;
}
.stats div p {
font-size: 0.9rem;
opacity: 0.8;
}
/* Resources Section */
.resources {
padding: 80px 0;
background: #fff;
}
.resources h2 {
text-align: center;
font-size: 2rem;
color: #333;
}
.resources .subtitle {
text-align: center;
color: #666;
margin-bottom: 40px;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
.card {
background: #fdfdfd;
border-radius: 15px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card .label {
font-size: 0.8rem;
color: #ff6f61;
text-transform: uppercase;
font-weight: bold;
}
.card h3 {
margin-top: 10px;
font-size: 1.3rem;
color: #333;
}
.card p {
color: #555;
margin: 10px 0 20px;
}
.card .meta {
display: flex;
justify-content: space-between;
font-size: 0.8rem;
color: #888;
}
.view-all {
text-align: center;
margin-top: 50px;
}
/* Footer */
footer {
background: #222;
color: white;
padding: 60px 20px;
}
footer h2 {
text-align: center;
font: size 1.5em;}