all
background
background-attachment
background-clip
background-color
background-image
background-origin
background-position
background-repeat
background-size
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
<form name="first-form"> | |
<input name="email" type="email" placeholder="Email" required> | |
<button type="submit">Send</button> | |
</form> | |
<form name="second-form"> | |
<input name="email" type="email" placeholder="Email" required> | |
<button type="submit">Send</button> | |
</form> |
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
/* Create random color for brands */ | |
/* http://geoffgraham.me/randomize-sass */ | |
$s-min: 20; | |
$s-max: 70; | |
$l-min: 30; | |
$l-max: 90; | |
@for $i from 1 through 100 { | |
.card:nth-child(#{$i}) .card-brand-color { |