mirror of
				https://github.com/valentineus/popov.link.git
				synced 2025-11-04 14:59:45 +03:00 
			
		
		
		
	Add an animation menu on the only CSS
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
		@@ -1,26 +1,15 @@
 | 
				
			|||||||
{% assign pages = site.pages | where: "show", true %}
 | 
					{% assign pages = site.pages | where: "show", true %}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<nav role="navigation">
 | 
					<div class="navigation-container">
 | 
				
			||||||
    <ul class="nav-pills">
 | 
					    <input id="toggle-button" class="toggle-button" type="checkbox" />
 | 
				
			||||||
        {% unless page.url == "/index.html" %}
 | 
					 | 
				
			||||||
            <li role="presentation">
 | 
					 | 
				
			||||||
                <strong>
 | 
					 | 
				
			||||||
                    <a class="nav-link" href="/">Home</a>
 | 
					 | 
				
			||||||
                </strong>
 | 
					 | 
				
			||||||
            </li>
 | 
					 | 
				
			||||||
        {% endunless %}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <!-- Right side -->
 | 
					    <label class="toggle-label" for="toggle-button">
 | 
				
			||||||
        <ul class="nav-pills nav-right">
 | 
					        <span></span>
 | 
				
			||||||
            {% for page in pages %}
 | 
					        <span></span>
 | 
				
			||||||
                <li role="presentation">
 | 
					        <span></span>
 | 
				
			||||||
                    <strong>
 | 
					    </label>
 | 
				
			||||||
                        <a class="nav-link" href="{{ page.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
 | 
					
 | 
				
			||||||
                            {{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
 | 
					    <nav class="navigation" role="navigation">
 | 
				
			||||||
                        </a>
 | 
					        <ul class="navigation-pills"></ul>
 | 
				
			||||||
                    </strong>
 | 
					    </nav>
 | 
				
			||||||
                </li>
 | 
					</div>
 | 
				
			||||||
            {% endfor %}
 | 
					 | 
				
			||||||
        </ul>
 | 
					 | 
				
			||||||
    </ul>
 | 
					 | 
				
			||||||
</nav>
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,36 +1,87 @@
 | 
				
			|||||||
.nav-pills {
 | 
					.navigation-container {
 | 
				
			||||||
  list-style-type: none;
 | 
					  background: $color-bg;
 | 
				
			||||||
  margin: 0;
 | 
					  border-left: 1px solid $color-bg-alt;
 | 
				
			||||||
  overflow: hidden;
 | 
					  border-right: 1px solid $color-bg-alt;
 | 
				
			||||||
 | 
					  height: 100px;
 | 
				
			||||||
 | 
					  left: 0;
 | 
				
			||||||
 | 
					  margin: auto;
 | 
				
			||||||
 | 
					  max-width: 52em;
 | 
				
			||||||
  padding: 0;
 | 
					  padding: 0;
 | 
				
			||||||
  text-align: center;
 | 
					  position: fixed;
 | 
				
			||||||
 | 
					  right: 0;
 | 
				
			||||||
 | 
					  top: 0;
 | 
				
			||||||
 | 
					  width: 100%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  li {
 | 
					.toggle-button {
 | 
				
			||||||
    float: left;
 | 
					  display: none;
 | 
				
			||||||
    padding: .5em;
 | 
					
 | 
				
			||||||
 | 
					  &:checked ~ .navigation {
 | 
				
			||||||
 | 
					    transform: none;
 | 
				
			||||||
 | 
					    transition: all .1s;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  &:checked ~ .toggle-label {
 | 
				
			||||||
 | 
					    span {
 | 
				
			||||||
 | 
					      opacity: 0;
 | 
				
			||||||
 | 
					      top: 50%;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    span:first-child {
 | 
				
			||||||
 | 
					      opacity: 1;
 | 
				
			||||||
 | 
					      transform: rotate(405deg);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    span:last-child {
 | 
				
			||||||
 | 
					      opacity: 1;
 | 
				
			||||||
 | 
					      transform: rotate(-405deg);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.nav-link {
 | 
					.toggle-label {
 | 
				
			||||||
  text-align: center;
 | 
					 | 
				
			||||||
  text-decoration: none;
 | 
					 | 
				
			||||||
  text-transform: uppercase;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  &:active,
 | 
					 | 
				
			||||||
  &:focus,
 | 
					 | 
				
			||||||
  &:hover {
 | 
					 | 
				
			||||||
    border: 0;
 | 
					 | 
				
			||||||
    text-decoration: none;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
.nav-right {
 | 
					 | 
				
			||||||
  float: right;
 | 
					  float: right;
 | 
				
			||||||
}
 | 
					  height: 20px;
 | 
				
			||||||
 | 
					  position: relative;
 | 
				
			||||||
 | 
					  right: 40px;
 | 
				
			||||||
 | 
					  top: 40px;
 | 
				
			||||||
 | 
					  width: 15px;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@media (max-width: 382px) {
 | 
					  &:hover {
 | 
				
			||||||
  .nav-right,
 | 
					    cursor: pointer;
 | 
				
			||||||
  .nav-pills li {
 | 
					  }
 | 
				
			||||||
    float: none;
 | 
					
 | 
				
			||||||
 | 
					  span {
 | 
				
			||||||
 | 
					    background: $color-text;
 | 
				
			||||||
 | 
					    height: 2px;
 | 
				
			||||||
 | 
					    position: absolute;
 | 
				
			||||||
 | 
					    top: 50%;
 | 
				
			||||||
 | 
					    width: 100%;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    &:first-child {
 | 
				
			||||||
 | 
					      top: 3px;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    &:last-child {
 | 
				
			||||||
 | 
					      top: 16px;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.navigation {
 | 
				
			||||||
 | 
					  background: $color-bg;
 | 
				
			||||||
 | 
					  border-left: 1px solid $color-bg-alt;
 | 
				
			||||||
 | 
					  border-right: 1px solid $color-bg-alt;
 | 
				
			||||||
 | 
					  height: 100%;
 | 
				
			||||||
 | 
					  left: 0;
 | 
				
			||||||
 | 
					  margin: auto;
 | 
				
			||||||
 | 
					  max-width: 52em;
 | 
				
			||||||
 | 
					  padding: 0;
 | 
				
			||||||
 | 
					  position: fixed;
 | 
				
			||||||
 | 
					  right: 0;
 | 
				
			||||||
 | 
					  top: 100px;
 | 
				
			||||||
 | 
					  transform: scale(.1, 0);
 | 
				
			||||||
 | 
					  transform-origin: 100% 0%;
 | 
				
			||||||
 | 
					  transition: none;
 | 
				
			||||||
 | 
					  width: 100%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user