Skip to content

Instantly share code, notes, and snippets.

View mikemattner's full-sized avatar

Mike Mattner mikemattner

View GitHub Profile
@mikemattner
mikemattner / daily-ui.md
Created March 24, 2022 21:13 — forked from Pustur/daily-ui.md
DailyUI – A list of every DailyUI design challenge

All DailyUI Challenges

  1. Sign Up
  2. Credit Card Checkout
  3. Landing Page (above the fold)
  4. Calculator
  5. App Icon
  6. User Profile
  7. Settings
  8. 404 page
@mikemattner
mikemattner / checkboxes.scss
Created June 1, 2018 14:25 — forked from gregblass/checkboxes.scss
Fancy CSS styling for Radio Buttons and Checkboxes
/*********************
Fancy CSS Textboxes
**********************/
$light-blue: #609FD5;
input[type="checkbox"] {
position: absolute;
left: -9999px;
visibility: hidden;
@mikemattner
mikemattner / animation.scss
Last active June 9, 2016 15:11
Client animation demonstrating a representation of profit/cost margins.
/*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; }
}