Skip to content
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
27 changes: 26 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,20 @@ h6,
}

.card-icon{
background-color: #3498db;
background-color: #000000;
border-radius: 20px;
width: 40px;
height: 40px;
margin: 4%;
transition: all 0.2s ease-in-out;
}
.card-icon i{
color: wheat;
margin: 30%;
}
.card-icon:hover{
transform: scale(1.2);
}

/*--------------------------------------------------------------
# Back to top button
Expand Down Expand Up @@ -420,6 +424,27 @@ h6,
text-align: center;
}

.float{
animation: float 10s linear infinite;

}

@keyframes float {
0% {
transform: translateY(0px);
opacity: 1;
}
50% {
transform: translateY(-80px);
opacity: 1;
}
100% {
transform: translateY(0px);
opacity: 1;
}

}

#hero h2 {
color: #fff;
margin-bottom: 30px;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@
>
<img
src="img/icons8-open-source.svg"
class="img-fluid animated"
class="img-fluid animated float"
width="90%"
alt="About | IIITians Network | IIIT | Community | Indian Institute of Information Technology"
/>
Expand Down