Last active
April 21, 2017 21:18
-
-
Save matt-diehl/5178112 to your computer and use it in GitHub Desktop.
Revisions
-
Matt revised this gist
Mar 16, 2013 . 2 changed files with 40 additions and 7 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ /* ===== Contact Form Styles ===== */ // Base styles .contact_form { background: #FFF; border: 4px solid #999; padding: 10px; } .contact_form-label { color: #000; font-weight: bold; } .contact_form-styled_input { border: 1px solid #CCC; padding: 2px 4px; } // Mobile-only styles @include mobile-only { .contact_form-label { display: block; font-size: 1em; } .contact_form-styled_input { display: block; font-size: 1em; } } // Desktop-only styles @include desktop-only { .contact_form-label { display: inline-block; font-size: 1.2em; } .contact_form-styled_input { display: inline-block; font-size: 1.2em; } } 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +0,0 @@ -
Matt created this gist
Mar 16, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ /* ===== Contact Form Styles ===== */ .contact_form { background: #FFF; border: 4px solid #999; padding: 10px; }