Custom Form Elements - Radio & Checkbox Inputs. Using ONLY (S)CSS.
A Pen by Matt Daniel Brown on CodePen.
<div class="iphones"> | |
<div class="iphone"> | |
<header class="header"> | |
<a href="#" class="button button--small"> | |
<svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | |
<use xlink:href="#icon-arrow-left" /> | |
</svg> | |
</a> | |
<h1>Sign up</h1> | |
</header> |
<canvas id = 'c'></canvas> |
Custom Form Elements - Radio & Checkbox Inputs. Using ONLY (S)CSS.
A Pen by Matt Daniel Brown on CodePen.
A Pen by Matt Daniel Brown on CodePen.
Recreation of this Dribbble shot https://dribbble.com/shots/15124959-Light-UI-Elements by Jan Hoffmann.
A Pen by Matt Daniel Brown on CodePen.
// Property Variable Definitions | |
$color-prop : color; | |
$bd-color-prop : border-color; | |
$bg-color-prop : background-color; | |
// Default argument (variable) values for @mxin color-for-props() | |
$bg-and-bd-color-props : $bd-color-prop, $bg-color-prop; | |
$bd-color-and-txt-color-props : $bd-color-prop, $color-prop; |
#=============================================================================== | |
# NAME : bash_script_usage_v2.template.sh | |
# VERSION : 2.1.0 | |
# CREATED : Dec 12 23:41:26 CST 2022 | |
# AUTHOR : Matt Daniel Brown <[email protected]> | |
# WEB : gist.github.com/mattdanielbrown/f00f119358b57a20ca9db67718dfbaf3 | |
#------------------------------------------------------------------------------- | |
# USAGE : Copy the `usage()` function below and paste into your bash script | |
# ... and then, replace the details as is appropriate for your script. | |
#=============================================================================== |
# Print usage | |
usage() { | |
echo -n "${scriptName} [OPTION]... [FILE]... | |
NAME | |
============================================================================== | |
The Full Name | |
• Expanded or 'Friendly' : Name Of The Script/App/Project |
#!/usr/bin/env bash | |
function define_color_escape_code_variables() { | |
# black='\e[0;30m' | |
export black='\e[30m' | |
export red='\e[31m' | |
export green='\e[32m' | |
export brown='\e[33m' |
Recreation of this Dribbble shot designed by the talented Vishnu Prasad: https://dribbble.com/shots/11522673-Landing-Page-Components
A Pen by Matt Daniel Brown on CodePen.