-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
222 lines (219 loc) · 5.03 KB
/
styles.css
File metadata and controls
222 lines (219 loc) · 5.03 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/* css styles */
<link rel="stylesheet" href="/path/to/folder/css/academicons.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons/css/academicons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">
<style>
.hero-strip {
margin-top: 1.25rem;
padding: 1rem 1.5rem;
border-radius: 0.85rem;
background: rgba(11, 19, 43, 0.03);
border: 1px solid rgba(11, 19, 43, 0.05);
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
align-items: center;
font-size: 0.95rem;
}
.hero-pill {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.25rem 0.8rem;
border-radius: 999px;
background: #1b4965;
color: #fff;
font-size: 0.85rem;
box-shadow: 0 0.1rem 0.35rem rgba(0,0,0,0.15);
}
.hero-pill.secondary {
background: #5c6f82;
}
.hero-pill .bi {
font-size: 1rem;
}
.hero-text {
margin-left: auto;
opacity: 0.9;
}
.tagline {
font-size: 1.05rem;
font-weight: 500;
margin-top: 0.6rem;
color: #444;
}
.section-intro {
font-size: 1.02rem;
color: #555;
}
.pill {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.15rem 0.7rem;
border-radius: 999px;
font-size: 0.8rem;
border: 1px solid rgba(0,0,0,0.08);
background: #f8f9fa;
color: #555;
margin-right: 0.25rem;
margin-bottom: 0.25rem;
}
.pill .bi {
font-size: 0.9rem;
}
.wp-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.25rem;
margin-top: 0.5rem;
}
.wp-card {
background: #ffffff;
border-radius: 1rem;
padding: 1rem 1.1rem;
border: 1px solid rgba(0,0,0,0.06);
box-shadow: 0 0.4rem 1.1rem rgba(15, 23, 42, 0.04);
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
position: relative;
overflow: hidden;
}
.wp-card::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at top right, rgba(27,73,101,0.08), transparent 55%);
opacity: 0;
transition: opacity 0.25s ease;
pointer-events: none;
}
.wp-card:hover {
transform: translateY(-2px);
box-shadow: 0 0.7rem 1.4rem rgba(15, 23, 42, 0.09);
border-color: rgba(27,73,101,0.25);
}
.wp-card:hover::before {
opacity: 1;
}
.wp-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.09em;
color: #6c757d;
margin-bottom: 0.15rem;
}
.wp-title {
font-weight: 600;
margin-bottom: 0.25rem;
color: #1b4965;
}
.wp-meta {
font-size: 0.8rem;
color: #777;
margin-bottom: 0.4rem;
}
.wp-card ul {
padding-left: 1.1rem;
margin-bottom: 0.4rem;
}
.wp-card li {
margin-bottom: 0.15rem;
}
.badge-soft {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.78rem;
padding: 0.15rem 0.55rem;
border-radius: 999px;
background: rgba(27,73,101,0.09);
color: #1b4965;
margin-right: 0.25rem;
}
.badge-soft .bi {
font-size: 0.85rem;
}
.partner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.1rem;
}
.partner-card {
border-radius: 0.9rem;
padding: 0.9rem 1rem;
border: 1px solid rgba(0,0,0,0.05);
background: #ffffff;
box-shadow: 0 0.45rem 0.9rem rgba(15, 23, 42, 0.04);
transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.partner-card:hover {
transform: translateY(-1px);
box-shadow: 0 0.7rem 1.4rem rgba(15, 23, 42, 0.09);
}
.partner-name {
font-weight: 600;
margin-bottom: 0.15rem;
}
.partner-role {
font-size: 0.85rem;
color: #6c757d;
margin-bottom: 0.35rem;
}
.callout-fibrea {
border-left-color: #1b4965 !important;
}
.impact-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1rem;
}
.impact-card {
padding: 0.85rem 1rem;
border-radius: 0.9rem;
background: #f8fafc;
border: 1px solid rgba(148, 163, 184, 0.4);
font-size: 0.95rem;
}
.impact-card h4 {
margin-top: 0;
font-size: 1rem;
display: flex;
align-items: center;
gap: 0.4rem;
}
.impact-card h4 .bi {
font-size: 1.1rem;
color: #1b4965;
}
footer.quarto-footer {
border-top: 1px solid rgba(0,0,0,0.05);
}
.contact-links a {
margin-right: 0.5rem;
}
@media (max-width: 768px) {
.hero-strip {
flex-direction: column;
align-items: flex-start;
}
.hero-text {
margin-left: 0;
}
}
/* Raise cookie prefs link and make it always clickable */
.cc-floating .cc-btn.cc-link {
margin-top: 8px !important;
padding: 6px 10px !important;
display: inline-block !important;
position: relative !important;
z-index: 99999 !important; /* stays on top */
}
/* Ensure cookie banner stays visible properly */
.cc-window {
z-index: 9999 !important;
}
/* Fix clipping on small screens */
.cc-bottom {
bottom: 20px !important;
}
</style>