Skip to content

Commit 532d80c

Browse files
committed
Added Videos, pictures and changes that make the wesite look uniform across pages
1 parent e25a9b7 commit 532d80c

File tree

6 files changed

+225
-16
lines changed

6 files changed

+225
-16
lines changed

assets/css/main.css

Lines changed: 176 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
* {
33
margin: 0;
44
padding: 0;
5+
box-sizing: border-box;
56
}
67

78
/* Body styling */
89
body {
910
font-family: 'Arial', sans-serif;
1011
font-size: 20px;
12+
line-height: 1.6;
1113
padding-top: 70px; /* Adjust based on header height */
1214
}
1315

@@ -30,6 +32,7 @@ header .inner {
3032
/* Navbar styling */
3133
.navbar {
3234
display: flex;
35+
flex-wrap: wrap; /* Added flex-wrap for overflow handling */
3336
align-items: center;
3437
width: 100%;
3538
justify-content: space-between;
@@ -66,6 +69,7 @@ header .inner {
6669

6770
.nav-list li a:hover {
6871
color: #b22222; /* Change the color on hover */
72+
transition: color 0.2s ease-in-out; /* Added smoother hover transition */
6973
}
7074

7175
/* External link image styling */
@@ -207,7 +211,6 @@ header .inner {
207211
transition: background-color 0.3s ease-in-out;
208212
}
209213

210-
211214
.note {
212215
font-size: 12px;
213216
color: #555;
@@ -292,6 +295,15 @@ footer p {
292295
.publication-links a:last-child {
293296
margin-bottom: 0;
294297
}
298+
299+
/* Responsive typography adjustments */
300+
body {
301+
font-size: 18px;
302+
}
303+
304+
h1, h2, h3 {
305+
font-size: 90%;
306+
}
295307
}
296308

297309
/* Additional CSS from your original main.css file */
@@ -351,7 +363,55 @@ li > ol {
351363
}
352364

353365
h1, h2, h3, h4, h5, h6 {
354-
font-weight: 400;
366+
font-weight: 400;/* Videos section styling */
367+
.videos-section {
368+
padding: 20px;
369+
background-color: #f9f9f9;
370+
}
371+
372+
.videos-section h1,
373+
.videos-section h2 {
374+
font-family: 'Georgia', serif;
375+
margin-bottom: 20px;
376+
}
377+
378+
.video-item {
379+
display: flex;
380+
flex-direction: column;
381+
margin-bottom: 40px;
382+
}
383+
384+
.video-item-info {
385+
margin-bottom: 20px;
386+
}
387+
388+
.video-item-info h3 {
389+
font-family: 'Georgia', serif;
390+
color: #b22222;
391+
margin-bottom: 10px;
392+
}
393+
394+
.video-item-info p {
395+
margin-bottom: 10px;
396+
}
397+
398+
.video-item iframe {
399+
width: 100%;
400+
height: auto;
401+
border-radius: 10px;
402+
}
403+
404+
.video-item-links a {
405+
display: inline-block;
406+
margin-right: 10px;
407+
color: #b22222;
408+
font-size: 20px;
409+
}
410+
411+
.video-item-links a:hover {
412+
color: #111;
413+
}
414+
355415
}
356416

357417
a {
@@ -598,7 +658,7 @@ table td {
598658
}
599659
.footer-col-3 {
600660
width: -webkit-calc(100% - (30px / 2));
601-
width: calc(100% - (30px / 2));
661+
width: calc(100% - (30px));
602662
}
603663
}
604664
@media screen and (max-width: 600px) {
@@ -683,6 +743,119 @@ table td {
683743
}
684744
}
685745

746+
/* Videos section styling */
747+
.videos-section {
748+
padding: 20px;
749+
background-color: #f9f9f9;
750+
}
751+
752+
.videos-section h1,
753+
.videos-section h2 {
754+
font-family: 'Georgia', serif;
755+
margin-bottom: 20px;
756+
}
757+
758+
.video-item {
759+
display: flex;
760+
flex-direction: column;
761+
margin-bottom: 40px;
762+
}
763+
764+
.video-item-info {
765+
margin-bottom: 20px;
766+
}
767+
768+
.video-item-info h3 {
769+
font-family: 'Georgia', serif;
770+
margin-bottom: 10px;
771+
}
772+
773+
.video-item-info p {
774+
margin-bottom: 10px;
775+
}
776+
777+
.video-item iframe {
778+
width: 100%;
779+
border-radius: 10px;
780+
}
781+
782+
.video-item-links a {
783+
display: inline-block;
784+
margin-right: 10px;
785+
color: #b22222;
786+
font-size: 20px;
787+
}
788+
789+
.video-item-links a:hover {
790+
color: #111;
791+
}
792+
793+
/* Home section styling */
794+
.home-section {
795+
padding: 20px;
796+
background-color: #ffffff; /* White background for a clean look */
797+
}
798+
799+
.home-section h1,
800+
.home-section h2 {
801+
font-family: 'Georgia', serif;
802+
margin-bottom: 20px;
803+
}
804+
805+
.home-feature {
806+
display: flex;
807+
align-items: flex-start;
808+
margin-bottom: 40px;
809+
}
810+
811+
.home-feature-info {
812+
flex: 1;
813+
}
814+
815+
.home-feature-info p {
816+
margin-bottom: 10px;
817+
}
818+
819+
.lab-name {
820+
text-align: center;
821+
margin-top: 20px;
822+
padding: 20px 0;
823+
background-color: #f9f9f9; /* Light background to highlight the lab name */
824+
border-bottom: 2px solid #b22222; /* Optional underline */
825+
}
826+
827+
.lab-name h1 {
828+
font-family: 'Georgia', serif;
829+
font-size: 36px;
830+
margin: 0;
831+
}
832+
833+
/* Adjust the banner to align with overall styling */
834+
.banner {
835+
position: relative;
836+
width: 100%;
837+
height: auto;
838+
max-height: 700px;
839+
overflow: hidden;
840+
}
841+
842+
.banner img {
843+
width: 100%;
844+
height: auto;
845+
}
846+
847+
.banner-caption {
848+
position: absolute;
849+
bottom: 10px;
850+
left: 20px;
851+
color: white;
852+
background-color: rgba(0, 0, 0, 0.5);
853+
padding: 10px;
854+
font-size: 24px;
855+
border-radius: 5px;
856+
}
857+
858+
686859
.highlight {
687860
background: #fff;
688861
}
547 KB
Loading

index.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,34 @@
22
layout: default
33
title: Home
44
---
5-
<p><h3> Aligned, Robust and Interactive Autonomy Lab at the University of Utah </h3></p>
5+
<div class="lab-name">
6+
<h1> Aligned, Robust and Interactive Autonomy Lab at the University of Utah</h1>
7+
</div>
68

79
<div class="banner">
8-
<img src="{{ '/assets/images/placeholder.jpg' | relative_url }}" alt="Banner">
9-
<div class="banner-caption"> Maybe a group picture? </div>
10+
<img src="{{ '/assets/images/PXL_20240914_141904501.jpg' | relative_url }}" alt="Banner">
1011
</div>
11-
<div class="content">
12-
<p>
12+
13+
14+
<div class="home-section">
15+
<h1>About Us</h1>
16+
<div class="home-feature">
17+
<div class="home-feature-info">
18+
<p>
1319
Add About here.
1420
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas porttitor congue massa. Fusce posuere, magna sed pulvinar ultricies, purus lectus malesuada libero, sit amet commodo magna eros quis urna. Nunc viverra imperdiet enim. Fusce est. Vivamus a tellus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin pharetra nonummy pede. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet nonummy augue. Suspendisse dui purus, scelerisque at, vulputate vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis eleifend. Ut nonummy.
15-
</p>
21+
</p>
22+
</div>
23+
</div>
1624

17-
<h2>Recent News</h2>
18-
...
25+
26+
<h2>Recent News</h2>
27+
<div class="home-feature">
28+
<div class="home-feature-info">
29+
<p>
30+
Here you can add recent updates or news. For example, new research findings, publications, events, etc.
31+
</p>
32+
</div>
33+
</div>
1934
</div>
35+

people.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ title: People
6767
<img src="{{ '/assets/images/AtharvBelsare.jpg' | relative_url }}" alt="Atharv" class="person-photo">
6868
<div class="person-info">
6969
<h3>Atharv Belsare</h3>
70-
<p>ALorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Cras semper auctor neque vitae. In nisl nisi scelerisque eu ultrices vitae auctor eu. Nunc pulvinar sapien et ligula ullamcorper. Sociis natoque penatibus et magnis dis parturient montes. Sed lectus vestibulum mattis ullamcorper. Lorem sed risus ultricies tristique nulla aliquet enim tortor at. Scelerisque eu ultrices vitae auctor. Facilisis leo vel fringilla est ullamcorper eget nulla. Lectus nulla at volutpat diam ut venenatis tellus in metus. Ullamcorper velit sed ullamcorper morbi tincidunt ornare massa. Facilisis magna etiam tempor orci. Suscipit adipiscing bibendum est ultricies integer quis.</p>
70+
<p>I am a first year Ph.D. student in Computer Science at the Kahlert School of Computing. My research interests include Human-Robot Interaction and Assistive Robotics.</p>
7171
<div class="person-links">
7272
<a href="#"><i class="fas fa-home"></i></a>
7373
<a href="#"><i class="fas fa-graduation-cap"></i></a>

research.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ layout: default
33
title: Research
44
---
55

6-
# Research
6+
<div class="publications-section">
7+
<h1>Research</h1>
8+
</div>
79

810
Welcome to our research page! Our lab is focused on advancing the fields of human-centered AI and human-robot interaction, with specific emphasis on reward learning, assistive and medical robotics, safety and robustness, and multi-agent systems.
911

videos.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,25 @@
22
layout: default
33
title: Videos
44
---
5+
<div class="videos-section">
6+
<h1>Videos</h1>
7+
<div class="video-item">
8+
<div class="video-item-info">
9+
<h5>Latent Spaces and Learned Representation for Better Human Preference Learning, CoRL 2022. Talk by Dr. Daniel Brown.</h5>
10+
</div>
11+
<iframe width="500" height="500" src="https://www.youtube.com/embed/eOHWDgqMHq8?si=Vopk_--9kUVfsGsU&amp;start=11280" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
12+
</div>
13+
<div class="video-item">
14+
<div class="video-item-info">
15+
<h5>Helping Robots Learn from, Predict and Better Assist Humans. Talk by Dr. Daniel Brown.</h5>
16+
</div>
17+
<iframe width="500" height="500" src="https://www.youtube.com/embed/zTdBKSwWE4M?si=oi2dNLTMr1oFevQ1&amp;start=1478" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
18+
</div>
19+
<div class="video-item">
20+
<div class="video-item-info">
21+
<h5>Efficient and Robust Learning of Human Intent. Talk by Dr. Daniel Brown.</h5>
22+
</div>
23+
<iframe width="500" height="500" src="https://www.youtube.com/embed/sPIpms0sTBQ?si=Rkp_eeYCcimzyzJu&amp;start=73" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
24+
</div>
25+
</div>
526

6-
# Videos
7-
8-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nisl eros, pulvinar facilisis justo mollis, auctor consequat urna.

0 commit comments

Comments
 (0)