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
24 changes: 23 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ main {
#SIDEBAR
\*-----------------------------------*/


.sidebar {
margin-bottom: 15px;
max-height: 112px;
Expand Down Expand Up @@ -446,7 +447,28 @@ main {

.social-item .social-link:hover { color: var(--light-gray); }


@media (min-width: 1250px) {
.active-status {
height: 14px;
width: 14px;
border-radius: 50%;
background-color: #39ff14;
animation: 1.5s pulse infinite ease-in-out;
position: absolute;
bottom: 116px;
right: 30px;
}
}


@keyframes pulse {
0% {
box-shadow: 0 0 0 0 #39ff14;
}
100% {
box-shadow: 0 0 0 14px #69ffa800;
}
}



Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

<figure class="avatar-box">
<img src="./assets/images/my-avatar.png" alt="Richard hanrick" width="80">
<span class="active-status" title="Available for work!"></span>
</figure>

<div class="info-content">
Expand Down