Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made navbar responsive #41

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ nav{
padding-top: 53px;
z-index: 10;
}

.navbar-collapse.in {
display: block !important;
}

.header-logo {
height: 70px;
position: absolute;
Expand Down Expand Up @@ -110,9 +115,7 @@ nav{
.subone-fixed{
margin-top:20%;
}
.subtwo-fixed{

}
.heading-two{
font-size:50px;
line-height:1.3;
Expand Down Expand Up @@ -636,9 +639,7 @@ body{
width: 60%;
text-align: center;
}
.project-title{

}

.project-description{
text-align: left;
}
Expand Down
100 changes: 55 additions & 45 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,28 @@
</head>

<body>
<nav class="navbar navbar-expand-lg navbar-light info-color">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#products">Products</a>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">CloudLibz</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-link waves-effect waves-light">
<a class="nav-link" href="#products">Products</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#vendors">Providers</a>
<li class="nav-link waves-effect waves-light">
<a class="nav-link" href="#vendors">Providers</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#community">Community</a>
<li class="nav-link waves-effect waves-light">
<a class="nav-link" href="#community">Community</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="https://medium.com/cloudlibz"
target="_blank">Blog</a>
<li class="nav-link waves-effect waves-light">
<a class="nav-link" href="https://medium.com/cloudlibz" target="_blank">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="./gsoc.html"
target="_blank">GSoC 2020</a>
<li class="nav-link waves-effect waves-light">
<a class="nav-link" href="./gsoc.html" target="_blank">GSoC 2020</a>
</li>
</ul>
</div>
Expand Down Expand Up @@ -66,43 +69,49 @@
<a href="https://github.com/cloudlibz/nodecloud">NodeCloud</a>
</div>
<div class="pr-description">
NodeCloud is a standard library written in NodeJS to get a single API on the open cloud with multiple providers. Making open cloud easily accessible and managed.
NodeCloud is a standard library written in NodeJS to get a single API on the open cloud with
multiple providers. Making open cloud easily accessible and managed.
</div>
<div class="pr-github">
<a href="https://github.com/cloudlibz/nodecloud"><i class="fa fa-3x fa-github"></i></a>
<a href="https://github.com/cloudlibz/nodecloud"><i class="fa fa-3x fa-github"></i></a>
</div>
</div>
<div class="col-lg-6 product">
<div class="pr-name">
<a href="https://github.com/cloudlibz/gocloud">GoCloud</a>
<a href="https://github.com/cloudlibz/gocloud">GoCloud</a>
</div>
<div class="pr-description">
GoCloud is a golang library which hides the difference between different APIs provided by varied cloud providers (AWS, GCP, OpenStack etc.) and allows you to manage different cloud resources through a unified and easy to use API.
GoCloud is a golang library which hides the difference between different APIs provided by varied
cloud providers (AWS, GCP, OpenStack etc.) and allows you to manage different cloud resources
through a unified and easy to use API.
</div>
<div class="pr-github">
<a href="https://github.com/cloudlibz/gocloud"><i class="fa fa-3x fa-github"></i></a>
<a href="https://github.com/cloudlibz/gocloud"><i class="fa fa-3x fa-github"></i></a>
</div>
</div>
<div class="col-lg-6 product">
<div class="pr-name">
<a href="https://github.com/cloudlibz/clocal-gcp">CLocal - GCP</a>
</div>
<div class="pr-description">
CLocal GCP emulates Google Cloud Platform services locally. Users can leverage the rest endpoints provided by the CLocal-GCP to mock the cloud API invocations. It uses the same interfaces provided by the GCP REST API.
CLocal GCP emulates Google Cloud Platform services locally. Users can leverage the rest
endpoints provided by the CLocal-GCP to mock the cloud API invocations. It uses the same
interfaces provided by the GCP REST API.
</div>
<div class="pr-github">
<a href="https://github.com/cloudlibz/clocal-gcp"><i class="fa fa-3x fa-github"></i></a>
<a href="https://github.com/cloudlibz/clocal-gcp"><i class="fa fa-3x fa-github"></i></a>
</div>
</div>
<div class="col-lg-6 product">
<div class="pr-name">
<a href="https://github.com/cloudlibz/clocal-azure">CLocal - Azure</a>
</div>
<div class="pr-description">
Clocal-Azure provides an easy-to-use test/mocking framework for developing Cloud applications. It emulates Azure services on the localhost.
Clocal-Azure provides an easy-to-use test/mocking framework for developing Cloud applications.
It emulates Azure services on the localhost.
</div>
<div class="pr-github">
<a href="https://github.com/cloudlibz/clocal-azure"><i class="fa fa-3x fa-github"></i></a>
<a href="https://github.com/cloudlibz/clocal-azure"><i class="fa fa-3x fa-github"></i></a>
</div>
</div>
</div>
Expand Down Expand Up @@ -171,30 +180,31 @@ <h1 class="testimonials-text" align="center">Awesome Community</h1>
</footer>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
if ($('#back-to-top').length) {
var scrollTrigger = 100, // px
backToTop = function () {
var scrollTop = $(window).scrollTop();
if (scrollTop > scrollTrigger) {
$('#back-to-top').addClass('show');
} else {
$('#back-to-top').removeClass('show');
}
};
if ($('#back-to-top').length) {
var scrollTrigger = 100, // px
backToTop = function () {
var scrollTop = $(window).scrollTop();
if (scrollTop > scrollTrigger) {
$('#back-to-top').addClass('show');
} else {
$('#back-to-top').removeClass('show');
}
};
backToTop();
$(window).on('scroll', function () {
backToTop();
$(window).on('scroll', function () {
backToTop();
});
$('#back-to-top').on('click', function (e) {
e.preventDefault();
$('html,body').animate({
scrollTop: 0
}, 700);
});
});
$('#back-to-top').on('click', function (e) {
e.preventDefault();
$('html,body').animate({
scrollTop: 0
}, 700);
});
}
</script>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>


</body>

</html>
</html>