Skip to content

Commit

Permalink
Try this new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
aarmey committed Nov 29, 2024
1 parent 7cc0e9b commit 6367bfa
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
7 changes: 6 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
<div class="container azul">
<header class="top row gutters{% if page.title == "Home" %} fadeInLeft animated{% endif %}">
<div class="col span_2 center">
<div id="logo"></div>
<!-- <div id="logo"></div> //-->

<div class="animated-logo">
<div class="animated-circle"></div>
</div>

</div>
{% include navigation.html %}
</header>
Expand Down
28 changes: 28 additions & 0 deletions public/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,34 @@ footer {
font-size: 8rem;
}

.animated-logo {
width: 100px;
height: 100px;
position: relative;
}

.animated-circle {
width: 52px;
height: 52px;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: fillAndStroke 1s forwards;
}

@keyframes fillAndStroke {
0% {
background-color: transparent;
box-shadow: 0 0 0 0 rgba(0, 103, 161, 0);
}
100% {
background-color: #000;
box-shadow: 0 0 0 35px rgba(0, 103, 161, 0.3);
}
}

dl,
.clearfix:before,
.clearfix:after {
Expand Down

0 comments on commit 6367bfa

Please sign in to comment.