-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathabout-us.component.css
More file actions
144 lines (123 loc) · 2.45 KB
/
about-us.component.css
File metadata and controls
144 lines (123 loc) · 2.45 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
.about-page {
max-width: 960px;
padding: 24px 28px;
}
/* Hero */
.hero-section {
background: linear-gradient(135deg, #e8f5e9 0%, #f1f8ff 100%);
border: 1px solid #c8e6c9;
border-radius: 12px;
padding: 36px 32px;
margin-bottom: 24px;
}
.hero-badge {
display: inline-block;
background: #2e7d32;
color: #fff;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.8px;
text-transform: uppercase;
padding: 4px 12px;
border-radius: 10px;
margin-bottom: 12px;
}
.hero-title {
font-size: 28px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 10px;
}
.hero-subtitle {
font-size: 15px;
color: #555;
line-height: 1.6;
max-width: 680px;
margin: 0 0 24px;
}
.hero-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.hero-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 9px 18px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition: opacity 0.15s, transform 0.1s;
}
.hero-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.hero-btn-primary {
background: #2e7d32;
color: #fff;
}
.hero-btn-secondary {
background: #fff;
color: #2e7d32;
border: 1px solid #a5d6a7;
}
.btn-icon { font-size: 14px; }
/* Quick Links Grid */
.links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
margin-bottom: 20px;
}
.link-card {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 16px;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
text-decoration: none;
color: inherit;
transition: border-color 0.15s, box-shadow 0.15s;
}
.link-card:hover {
border-color: #a5d6a7;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.link-card-icon { font-size: 24px; flex-shrink: 0; }
.link-card-title {
font-size: 13px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 2px;
}
.link-card-desc {
font-size: 11px;
color: #888;
}
/* Contribute Callout */
.contribute-callout {
display: flex;
align-items: center;
gap: 12px;
background: #fff8e1;
border: 1px solid #ffe082;
border-radius: 8px;
padding: 14px 18px;
font-size: 13px;
color: #5d4037;
margin-bottom: 28px;
}
.callout-icon { font-size: 22px; flex-shrink: 0; }
.contribute-callout a {
color: #2e7d32;
font-weight: 600;
text-decoration: none;
}
.contribute-callout a:hover { text-decoration: underline; }
/* README section */
.readme-section {
border-top: 1px solid #e0e0e0;
padding-top: 20px;
}