- Sign Up
- Credit Card Checkout
- Landing Page (above the fold)
- Calculator
- App Icon
- User Profile
- Settings
- 404 page
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
/********************* | |
Fancy CSS Textboxes | |
**********************/ | |
$light-blue: #609FD5; | |
input[type="checkbox"] { | |
position: absolute; | |
left: -9999px; | |
visibility: hidden; |
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
/*KEYFRAME ANIMATION MIXIN | |
http://joshbroton.com/quick-fix-sass-mixins-for-css-keyframe-animations/ | |
------------USAGE////////////////////////////// | |
@include keyframes(move-the-object) { | |
0% { left: 100px; } | |
100% { left: 200px; } | |
} |