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
90 changes: 0 additions & 90 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -1,93 +1,3 @@
/* Styling of ubuntu icon at homepage*/
#ubucon-icon {
position: fixed;
bottom: 30px;
right: 30px;
background-color: #e95420;
color: white;
padding: 12px;
border-radius: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
text-decoration: none;
font-size: 1rem;
font-weight: 600;
z-index: 1000;
cursor: pointer;
display: flex;
align-items: center;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
transform: translateY(100px);
opacity: 0;
}

#ubucon-icon:hover {
background-color: #c04218;
transform: scale(1.05);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

#ubucon-icon .icon-text.full-text {
margin-left: 10px;
white-space: nowrap;
display: block;
}

#ubucon-icon .icon-text.short-text {
display: none;
}

.icon-pulse {
position: absolute;
top: 50%;
left: 12px;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background-color: #ffcc00;
border-radius: 50%;
box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
animation: pulse 2s infinite;
}


@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
}
}

/* Media Query for smaller screens (max-width: 900px) */
@media (max-width: 900px) {
#ubucon-icon {
bottom: 15px;
right: 15px;
padding: 10px;
font-size: 0.85rem;
}

.icon-pulse {
left: 10px;
}

/* Hide full text and show short text */
#ubucon-icon .icon-text.full-text {
display: none;
}

#ubucon-icon .icon-text.short-text {
display: block;
margin-right: 0;
margin-left: 10px;
}
}


#title {
text-align: center;
height: 100vh;
Expand Down
18 changes: 0 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,24 +89,6 @@

<body class="animate-bg">

<!--Icon for UbuCon-->
<a
href="https://ubuntu-in.netlify.app/events/ubucon-india-2025"
target="_blank"
id="ubucon-icon"
title="Ubuntu India Conference 2025 is happening at IISc"
>
<div class="icon-pulse"></div>
<span class="icon-text full-text"
>Ubuntu India Conference 2025 is happening at IISc</span
>
<span class="icon-text short-text"
>UbuCon 2025</span
>
</a>



<div id="loader"></div>

<header>
Expand Down