CSS3 animations spinners and preloaders, no JS, no images
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
<div class="loader"> | |
<div class="loader__bar"></div> | |
<div class="loader__bar loader__bar--delay-1"></div> | |
<div class="loader__bar loader__bar--delay-2"></div> | |
<div class="loader__bar loader__bar--delay-3"></div> | |
<div class="loader__bar loader__bar--delay-4"></div> | |
<div class="loader__bar loader__bar--delay-5"></div> | |
<div> | |
</div> |
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
<div id="messenger"></div> |
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
https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js |
A Pen by Colin Lohner 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
'use strict'; | |
let https = require('https'), | |
http = require('http'); | |
const ISBucketKey = 'YOUR-BUCKET-KEY', | |
WundergroundApiKey = 'WUNDERGROUND-API-KEY', | |
WundergroundCity = 'Nashville', | |
WundergroundState = 'TN'; | |
const ISAccessKey = 'YOUR-ACCESS-KEY'; |
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
<div class="wrapper"> | |
<div class="content"> | |
<div class="img"></div> | |
<div class="text"> | |
<div class="line title"></div> | |
<div class="line subtitle"></div> | |
</div> | |
</div> | |
</div> |
Recreation of https://dribbble.com/shots/3959132-Todo-List-Swipe-To-Check
Original built with JS but adapted to be CSS-only since JS wasn't necessary.
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
<label for="DrawerMenuTrigger" class="OpenMenuButton">OPEN MENU</label> | |
<input type="checkbox" id="DrawerMenuTrigger" hidden> | |
<aside class="DrawerMenu"> | |
<div class="MenuContainer"> | |
<nav class="Menu"> | |
<h2 class="Menu__Title">Awesome CSS Menu</h2> | |
<a href="#">Menu Item 01</a> |
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
.button() | |
input(type="radio" id="vote_up" name="vote") | |
input(type="radio" id="vote_down" name="vote") | |
.bg | |
.icon. | |
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M10.5 21l7.5-7.5 7.5 7.5z"/></svg> | |
.count 23 | |
.count-up 24 | |
label(for="vote_up") |