A Pen by Matt Sisto on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Another CSS-Only Loading Spinner | |
-------------------------------- | |
A [Pen](http://codepen.io/msisto/pen/LntJe) by [Matt Sisto](http://codepen.io/msisto) on [CodePen](http://codepen.io/). | |
[License](http://codepen.io/msisto/pen/LntJe/license). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; } | |
@font-face { | |
font-family: carpenterscare; | |
src: url("fonts/carpenterscare.eot"); | |
src: url("fonts/carpenterscare.eot?#iefix") format("embedded-opentype"), url("fonts/carpenterscare.woff") format("woff"), url("fonts/carpenterscare.ttf") format("truetype"), url("fonts/carpenterscare.svg#carpenterscareRegular") format("svg"); | |
font-weight: normal; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
... | |
<section class="footer"> | |
<div class="container"> | |
<nav class="footer-nav"> | |
<h6>Header text</h6> | |
<?php wp_nav_menu( array( 'menu' => 'Footer', 'menu_class' => 'nav-menu-footer', 'container' => false ) ); ?> | |
</nav> |