This file contains 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
* { | |
vertical-align: top; | |
font-weight: inherit; | |
font-family: inherit; | |
font-style: inherit; | |
font-size: 100%; | |
border: 0 none; | |
outline: 0; | |
padding: 0; | |
margin: 0; |
This file contains 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 method="get", action="#"> | |
<ul id="contactUsForm"> | |
<li><label for="firstName">First Name</label> | |
<input type="text" name="firstName" id="firstName"> </li> | |
<li><label for="lastName">Last Name</label> | |
<input type="text" name="lastName" id="lastName"></li> | |
<li><label for="email">Email</label> | |
<input type="text" name="email" id="email"></li> | |
<li><label for="phone">Phone</label> | |
<input type="text" name="phone" id="phone"></li> |
This file contains 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
@mixin lableContactForm($anyColorFontForm) { | |
display: block; | |
cursor: pointer; | |
padding-bottom: 5px; | |
padding-top: 10px; | |
font-size:1.1em; | |
color:$anyColorFontForm; | |
} |
This file contains 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
@mixin inputContactForm($anyBorderVariable){ | |
border:$anyBorderVariable; | |
width:400px; | |
-moz-border-radius: .1em; | |
-webkit-border-radius: .1em; | |
border-radius: .1em; | |
} |
This file contains 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
echo "<img src=".base_url()."/comp/img/${1:filename}.jpg>"; |
This file contains 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
@function contentColumnWidth($siteWigth, $leftColumnWidth) { | |
@return $siteWigth-$leftColumnWidth; | |
} |
This file contains 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> | |
<fieldset> | |
<legend>Contact Us</legend> | |
<div class="row"> | |
<div class="small-6 columns"> | |
<label>First Name</label> | |
<input type="text" placeholder="Text"> | |
</div> | |
<div class="small-6 columns"> |
OlderNewer