Skip to content

Commit c3562d2

Browse files
committed
fixed bugs, visuals, and members
1 parent 1ea26a4 commit c3562d2

File tree

10 files changed

+87
-29
lines changed

10 files changed

+87
-29
lines changed

_data/alumni.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@
125125

126126
# M.S. Graduates:
127127

128+
- name: Astha Singh
129+
status: MS Spring'24
130+
email: asthas@iastate.edu
131+
site: https://www.astha-singh.com/
132+
img: astha.png
133+
128134
- name: Jackson L Maddox
129135
status: MS Summer'18
130136
email: jlmaddox@iastate.edu

_includes/header.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@
33
<div class="container">
44
<div class="brand-navbar">
55
<div class="row">
6-
<div class="flex-separate col-12">
6+
<div class="flex-separate col-12 d-flex justify-content-between align-items-center">
77
<a href="/" class="nav-link">
88
<img src="/img/tulane-sse-logo.png" alt="Tulane School of Science and Engineering" id="header-logo"
99
style="height: 60px; margin: 10px 0; padding: 5px; border-radius: 4px;"/>
1010
</a>
11-
<!-- Move the navigation links here -->
12-
<div class="navbar-nav nav-horizontal">
11+
<!-- Navbar toggle button for mobile -->
12+
<button class="navbar-toggler d-block d-sm-none" type="button" data-toggle="collapse" data-target="#collapseNav" aria-controls="collapseNav" aria-expanded="false" aria-label="Toggle navigation">
13+
&#9776;
14+
</button>
15+
<!-- Desktop navigation links -->
16+
<div class="navbar-nav nav-horizontal d-none d-sm-flex">
1317
<a class="nav-item nav-link" href="/projects.html">Projects</a>
1418
<a class="nav-item nav-link" href="/papers/">Papers</a>
1519
<a class="nav-item nav-link" href="/grants/">Grants</a>
1620
<a class="nav-item nav-link" href="/news/">News</a>
1721
<a class="nav-item nav-link" href="/people.html">People</a>
1822
<a class="nav-item nav-link" href="/about/">About</a>
1923
</div>
20-
<button class="navbar-toggler d-block d-sm-none" type="button" data-toggle="collapse" data-target="#collapseNav">&#9776;</button>
2124
</div>
2225
</div>
2326
</div>

_includes/home_page/carousel.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<li data-target="#home-page-carousel" data-slide-to="9"></li>
1515
<li data-target="#home-page-carousel" data-slide-to="10"></li>
1616
<li data-target="#home-page-carousel" data-slide-to="11"></li>
17-
<li data-target="#home-page-carousel" data-slide-to="12"></li>
1817
</ol>
1918
<div class="carousel-inner" role="listbox">
2019
<div class="carousel-item active">

_includes/home_page/highlighted_papers.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<h3>Select Papers</h3>
1+
2+
<h3>Selected Papers</h3>
3+
24
{% for highlighted_paper in include.highlighted_papers %}
35
{% for paper in site.papers %}
46
{% if paper.key == highlighted_paper %}
File renamed without changes.
File renamed without changes.

css/design.scss

Lines changed: 62 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body {
66
}
77

88
.news-card .card-title, .home-page-highlighted-paper-card .card-title {
9-
color: #006747;
9+
color: #21543E;
1010
}
1111

1212
.card {
@@ -24,7 +24,7 @@ body {
2424

2525
@media screen and (min-width:576px){//This messes with extra small sizes
2626
.container {
27-
width: 1140px;//This is the maximum width a container can ever be
27+
width: 100% !important;//This is the maximum width a container can ever be
2828
}
2929
}
3030

@@ -34,7 +34,7 @@ body {
3434
}
3535

3636
.nav-bg-color {
37-
background-color: rgba(230,230,230,0.95);
37+
background-color: #21543E
3838
}
3939

4040
/* These styles will force the links to be inline */
@@ -119,6 +119,19 @@ body {
119119
}
120120
}
121121

122+
.navbar-collapse {
123+
background-color: #21543E; /* Match the header background color */
124+
padding: 10px;
125+
border-top: 2px solid rgba(255, 255, 255, 0.3); /* Subtle white line for visual separation */
126+
width: 100%;
127+
position: relative;
128+
}
129+
130+
.container-fluid {
131+
padding-left: 0;
132+
padding-right: 0;
133+
}
134+
122135
.navbar .navbar-nav .nav-link:hover,
123136
.navbar .navbar-nav .nav-link:focus {
124137
color: rgb(245, 184, 90);
@@ -146,22 +159,61 @@ nav .navbar {
146159
margin-right: 2.0rem;
147160
}
148161

162+
.carousel-control {
163+
font-size: 50pt;
164+
color: black;
165+
}
166+
149167
#home-page-carousel .carousel-indicators li {
150-
background-color: #999;
151-
background-color: rgba(70,70,70,.25);
168+
background-color: rgba(70, 70, 70, 0.25);
169+
width: 15px; /* Increase size */
170+
height: 15px;
171+
border-radius: 50%; /* Make it a perfect circle */
172+
margin: 5px;
152173
}
153174

154175
#home-page-carousel .carousel-indicators .active {
155176
background-color: #444;
177+
transform: scale(1.3); /* Enlarge the active indicator slightly */
156178
}
157179

158-
.carousel-control {
159-
font-size: 50pt;
160-
color: black;
180+
#home-page-carousel .carousel-indicators li:hover {
181+
background-color: rgba(0, 0, 0, 0.684);
182+
}
183+
184+
/* Default styles for larger screens (e.g., desktops) */
185+
#home-page-carousel {
186+
height: 400px; /* Fixed height for larger screens */
187+
overflow: hidden;
161188
}
162189

163190
.carousel-inner > .carousel-item > a > img {
164191
width: 100%;
192+
height: 350px; /* Same height as the carousel for desktops */
193+
object-fit: cover; /* Ensures the image fills the container without distortion */
194+
object-position: center;
195+
}
196+
197+
/* Responsive adjustments for smaller screens (e.g., tablets, mobile devices) */
198+
@media (max-width: 768px) {
199+
#home-page-carousel {
200+
height: 150px; /* Reduced height for mobile and tablets */
201+
}
202+
203+
.carousel-inner > .carousel-item > a > img {
204+
height: 100px; /* Adjusted height to match the carousel container */
205+
}
206+
}
207+
208+
/* Very small screens (e.g., phones) */
209+
@media (max-width: 480px) {
210+
#home-page-carousel {
211+
height: 150px; /* Further reduced height for very small screens */
212+
}
213+
214+
.carousel-inner > .carousel-item > a > img {
215+
height: 100px; /* Adjusted height to maintain visual consistency */
216+
}
165217
}
166218

167219
.no-padding {
@@ -216,7 +268,7 @@ nav .navbar {
216268
list-style-type: none;
217269
}
218270

219-
$button-active-color: #006747;
271+
$button-active-color: #21543E;
220272

221273
.paper-btns.btn-group {
222274
display: flex;
@@ -278,7 +330,7 @@ $button-active-color: #006747;
278330
}
279331

280332
.paper_card_header .paper_card_header_name:hover, .grant_card_header .grant_card_header_name:hover {
281-
color: #006747;
333+
color: #21543E;
282334
}
283335

284336
.paper_card .padded-inner-card-block {

grants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Grants
44
permalink: /grants/
55
---
66

7-
{% assign grants_list = {site.data.grants | where:"primary","true"} | sort: 'start_date' | reverse %}
7+
{% assign grants_list = site.data.grants | where: "primary", "true" | sort: 'start_date' | reverse %}
88

99
<div id="grants-list" role="tablist" aria-multiselectable="true">
1010
{% for grant in grants_list %}

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Laboratory for Software Design
33
layout: default
44
highlighted_papers:
5+
- ICSE-24a
56
- ICSE-23a
67
- ICSE-23b
78
- ICSE-23c
@@ -23,7 +24,6 @@
2324
- OOPSLA-17
2425
- ICSE-NIER-17a
2526
- ICSE-15a
26-
- TOSEM-15
2727
- ICSE-15b
2828
---
2929

@@ -34,7 +34,7 @@
3434
<div class="col-xs-12">
3535
<div class="container">
3636
<div class="row">
37-
<div class="col-12">
37+
<div class="col-12 mb-4">
3838
{% include home_page/carousel.html %}
3939
</div>
4040
<br />

modularity/index.html

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,28 @@
22
layout: page
33
title: Modular Deep Learning Project
44
---
5+
56
<div class="card">
67
<div class="card-body">
7-
<h2 class="card-title">Project Objectives</h2>
8+
<h2 class="card-title">Overview of the project</h2>
89
<ul class="card-text">
910
<li>1st.</li>
1011
<li>2nd.</li>
1112
</ul>
1213
</div>
1314
</div>
14-
<div class="card">
15-
<div class="card-body">
16-
<h2 class="card-title">Methodology</h2>
17-
<p class="card-text">......</p>
18-
</div>
19-
</div>
2015

2116
<div class="card">
2217
<div class="card-body">
23-
<h2 class="card-title">Results</h2>
18+
<h2 class="card-title">Motivation</h2>
2419
<p class="card-text">... </p>
2520
</div>
2621
</div>
2722

2823
<div class="card">
2924
<div class="card-body">
30-
<h2 class="card-title">Expected Outcomes</h2>
25+
<h2 class="card-title">Recent Publications</h2>
3126
<p class="card-text"> ... </p>
32-
</div>
27+
</div>
28+
3329
</div>

0 commit comments

Comments
 (0)