-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
298 lines (253 loc) · 5.8 KB
/
style.css
File metadata and controls
298 lines (253 loc) · 5.8 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/* General Styles */
.project-support {
margin-top: 1.5em;
padding-top: 1em;
border-top: 1px solid #ddd;
text-align: center;
}
.support-text {
font-size: 0.95em;
color: #555;
margin-bottom: 0.75em;
}
.support-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 2em;
flex-wrap: wrap;
}
.support-logo {
max-height: 80px;
width: auto;
opacity: 0.95;
transition: opacity 0.2s ease;
}
.support-logo:hover {
opacity: 1.0;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8; /* Optional light background for contrast */
}
/* Header Styling */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: #f8f8f8; /* Light background */
border-bottom: 1px solid #ccc; /* Optional separator line */
}
/* Header Columns */
.header-column {
flex: 1; /* Each column takes up equal space */
text-align: center; /* Center content inside each column */
}
/* Logo Styling */
.logo img {
width: 100px; /* Adjust size as needed */
height: auto;
}
/* Text Styling */
header h1 {
font-size: 24px;
margin: 0;
line-height: 1.2;
}
header h2 {
margin: 5px 0;
font-size: 18px;
color: #990000; /* UA Crimson */
}
header h3 {
margin: 5px 0;
font-size: 16px;
color: #828282; /* UA Grey */
}
/* Navigation Styling */
nav {
text-align: center;
margin-top: 10px;
}
nav a {
color: #003366; /* Dark blue links */
text-decoration: none;
margin: 0 10px;
font-weight: bold;
}
nav a:hover {
color: #990000; /* Crimson on hover */
}
/* Footer Styling */
footer {
text-align: center;
margin-top: 1px;
margin-bottom: 1px;
padding: 10px;
background-color: #f0f0f0;
color: #828282;
font-size: 14px;
line-height: 1; /* Reduces vertical spacing between lines */
}
footer p {
margin: 0; /* Removes extra spacing between paragraphs */
padding: 0; /* Ensures no additional padding is applied */
}
/* Main Content Wrapper */
main {
max-width: 800px; /* Limit the text width */
margin: 20px auto; /* Center the content */
padding: 20px; /* Add padding inside the content */
background-color: #ffffff; /* White background for the content */
border: 1px solid #ccc; /* Optional border */
border-radius: 8px; /* Optional rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}
/* Left Logo */
.logo-left {
width: 100px; /* Adjust size as needed */
height: auto;
}
/* Right Logo */
.logo-right {
width: 100px; /* Adjust size as needed */
height: auto;
}
/* People Section Styling */
#people {
margin-top: 5px;
}
.person {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 5px;
gap: 5px; /* Space between columns */
}
.person-left {
flex: 1;
}
.person-right {
flex: 1;
padding-left: 5px; /* Adds space between columns */
border-left: 1px solid #ccc; /* Optional left border for separation */
color: #555; /* Subtle text color for the bio */
}
.person h3 {
margin-top: 1px;
margin-bottom: 1px;
color: #990000; /* UA Crimson */
}
.person h4 {
margin-top: 1px;
margin-bottom: 1px;
color: #828282; /* UA Grey */
}
.person p {
margin: 5px 0;
}
.person a {
color: #000000;
text-decoration: none;
}
.person a:hover {
text-decoration: underline;
}
.person img {
display: block;
margin: 10px 0;
max-width: 150px; /* Adjust size as needed */
height: auto;
border-radius: 8px; /* Optional for rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional for styling */
}
/* Introduction Section */
.introduction {
margin: 20px;
}
/* Department Info Section */
.department-info {
display: flex;
align-items: flex-start;
gap: 5px; /* Space between text and image */
margin-top: 1px;
margin-bottom: 1px;
margin: 20px;
line-height: 1.0;
}
.department-info img {
max-width: 200px; /* Adjust as needed */
height: auto;
border-radius: 8px; /* Optional: rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
}
/* Papers Section */
#papers {
margin: 20px auto;
max-width: 800px;
}
/* Individual Paper Entry */
.paper {
text-align: center;
border-bottom: 1px solid #ccc; /* Divider */
padding-bottom: 15px;
margin-bottom: 20px;
}
/* Image Styling */
.paper-image {
max-width: 384px; /* ~4 inches */
height: auto;
display: block;
margin: 0 auto 10px;
border-radius: 8px; /* Rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Image Styling */
.projects-image {
max-width: 192px; /* ~2 inches */
height: auto;
display: block;
margin: 0 auto 10px;
border-radius: 8px; /* Rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Paper Link */
.paper a {
font-size: 16px;
font-weight: bold;
color: #003366;
text-decoration: none;
}
.paper a:hover {
text-decoration: underline;
}
/* Paper Description */
.paper-description {
font-size: 14px;
color: #555;
font-style: italic;
}
/* Subsection styling for DL/PIML projects */
#deep-learning-piml h3 {
font-size: 14px;
color: #990000; /* UA Crimson */
margin-left: 0px; /* No indent for headers */
margin-top: 20px;
}
#deep-learning-piml h3 + p {
margin-left: 20px; /* Indent only the paragraph immediately following each h3 */
margin-bottom: 10px;
}
.zoomable-image {
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: zoom-in;
}
.zoomable-image:hover {
transform: scale(4.0); /* Enlarge on hover */
z-index: 10;
position: relative;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}