Created
October 23, 2014 15:33
-
-
Save davidkpiano/e03d889ea4a163900687 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.6) | |
// Compass (v1.0.1) | |
// ---- | |
input[type="color"], | |
input[type="date"], | |
input[type="datetime"], | |
input[type="datetime-local"], | |
input[type="email"], | |
input[type="month"], | |
input[type="number"], | |
input[type="password"], | |
input[type="search"], | |
input[type="tel"], | |
input[type="text"], | |
input[type="time"], | |
input[type="url"], | |
input[type="week"] { | |
@extend %input; | |
} | |
%input { | |
background: deepskyblue; | |
&:hover { | |
background: tomato; | |
} | |
&:focus { | |
background: gold; | |
} | |
&:active { | |
background: lightgreen; | |
} | |
&:hover, &:focus, &:active { | |
background: teal; | |
} | |
} |
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
input[type="color"], | |
input[type="date"], | |
input[type="datetime"], | |
input[type="datetime-local"], | |
input[type="email"], | |
input[type="month"], | |
input[type="number"], | |
input[type="password"], | |
input[type="search"], | |
input[type="tel"], | |
input[type="text"], | |
input[type="time"], | |
input[type="url"], | |
input[type="week"] { | |
background: deepskyblue; | |
} | |
input[type="color"]:hover, | |
input[type="date"]:hover, | |
input[type="datetime"]:hover, | |
input[type="datetime-local"]:hover, | |
input[type="email"]:hover, | |
input[type="month"]:hover, | |
input[type="number"]:hover, | |
input[type="password"]:hover, | |
input[type="search"]:hover, | |
input[type="tel"]:hover, | |
input[type="text"]:hover, | |
input[type="time"]:hover, | |
input[type="url"]:hover, | |
input[type="week"]:hover { | |
background: tomato; | |
} | |
input[type="color"]:focus, | |
input[type="date"]:focus, | |
input[type="datetime"]:focus, | |
input[type="datetime-local"]:focus, | |
input[type="email"]:focus, | |
input[type="month"]:focus, | |
input[type="number"]:focus, | |
input[type="password"]:focus, | |
input[type="search"]:focus, | |
input[type="tel"]:focus, | |
input[type="text"]:focus, | |
input[type="time"]:focus, | |
input[type="url"]:focus, | |
input[type="week"]:focus { | |
background: gold; | |
} | |
input[type="color"]:active, | |
input[type="date"]:active, | |
input[type="datetime"]:active, | |
input[type="datetime-local"]:active, | |
input[type="email"]:active, | |
input[type="month"]:active, | |
input[type="number"]:active, | |
input[type="password"]:active, | |
input[type="search"]:active, | |
input[type="tel"]:active, | |
input[type="text"]:active, | |
input[type="time"]:active, | |
input[type="url"]:active, | |
input[type="week"]:active { | |
background: lightgreen; | |
} | |
input[type="color"]:hover, | |
input[type="date"]:hover, | |
input[type="datetime"]:hover, | |
input[type="datetime-local"]:hover, | |
input[type="email"]:hover, | |
input[type="month"]:hover, | |
input[type="number"]:hover, | |
input[type="password"]:hover, | |
input[type="search"]:hover, | |
input[type="tel"]:hover, | |
input[type="text"]:hover, | |
input[type="time"]:hover, | |
input[type="url"]:hover, | |
input[type="week"]:hover, input[type="color"]:focus, | |
input[type="date"]:focus, | |
input[type="datetime"]:focus, | |
input[type="datetime-local"]:focus, | |
input[type="email"]:focus, | |
input[type="month"]:focus, | |
input[type="number"]:focus, | |
input[type="password"]:focus, | |
input[type="search"]:focus, | |
input[type="tel"]:focus, | |
input[type="text"]:focus, | |
input[type="time"]:focus, | |
input[type="url"]:focus, | |
input[type="week"]:focus, input[type="color"]:active, | |
input[type="date"]:active, | |
input[type="datetime"]:active, | |
input[type="datetime-local"]:active, | |
input[type="email"]:active, | |
input[type="month"]:active, | |
input[type="number"]:active, | |
input[type="password"]:active, | |
input[type="search"]:active, | |
input[type="tel"]:active, | |
input[type="text"]:active, | |
input[type="time"]:active, | |
input[type="url"]:active, | |
input[type="week"]:active { | |
background: teal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment