Skip to content

Commit

Permalink
Add funding section (#3)
Browse files Browse the repository at this point in the history
* Add funding section

* Remove unused CSS
  • Loading branch information
jaywonchung authored Feb 3, 2024
1 parent 7849b37 commit 6cf1a59
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 2 deletions.
8 changes: 8 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1148,3 +1148,11 @@ ul.contact-list i {
color: #23d175;
}
/*15.END FOOTER DESIGN AREA*/

/*START FUNDING AREA*/
.vertical-center {
display: table-cell;
float: none;
vertical-align: middle;
}
/*END FUNDING AREA*/
Binary file added assets/img/funding/mozilla.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/funding/nsf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/funding/salesforce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/funding/vmware.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 39 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@
</li>
<li><a class="smoth-scroll" href="#news">news</a>
</li>
<li><a class="smoth-scroll" href="#funding">funding</a>
</li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -307,7 +309,7 @@ <h2>Projects</h2>
<div class="section-title text-center">
<h2>Members</h2>
<span></span>
<p>Email: [email protected]</p>
<p>Admin email: [email protected]</p>
</div>
</div>
</div>
Expand Down Expand Up @@ -570,13 +572,48 @@ <h4>Zeus → NSDI '23</h4>
</section>
<!-- END BLOG AREA -->

<!-- START FUNDING AREA -->
<section id="funding" class="funding-area section-padding">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-title text-center">
<h2>Funding</h2>
<span></span>
<p>Any opinions, findings, and conclusions of our works are those of the author(s) and do not necessarily represent the official policy of any of these organizations.</p>
</div>
</div>
</div>
<div class="row text-center">
<!-- NSF LOGO -->
<div class="col-md-3 vertical-center">
<img src="assets/img/funding/nsf.png" alt="National Science Foundation Logo" style="max-width: 60%;">
</div>
<!-- VMWare LOGO -->
<div class="col-md-3 vertical-center">
<img src="assets/img/funding/vmware.png" alt="VMWare Logo" style="max-width: 60%;">
</div>
<!-- Mozilla LOGO -->
<div class="col-md-3 vertical-center">
<img src="assets/img/funding/mozilla.png" alt="Mozilla Logo" style="max-width: 60%;">
</div>
<!-- Salesforce LOGO -->
<div class="col-md-3 vertical-center">
<img src="assets/img/funding/salesforce.png" alt="Salesforce Logo" style="max-width: 60%;">
</div>
</div>
</div>
</div>
</section>
<!-- END FUNDING AREA -->

<!-- START FOOTER BOTTOM AREA -->
<footer class="footer-bottom-area footer-bottom-bg">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="footer-text text-center">
<p class="text-muted"><span>ML.ENERGY</span> &copy;2023 - All Rights Reserved.</p>
<p class="text-muted"><span>ML.ENERGY</span> &copy;2023 - 2024 - All Rights Reserved.</p>
<p class="text-muted">Contact: [email protected]</p>
</div>
</div>
Expand Down

0 comments on commit 6cf1a59

Please sign in to comment.