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
<style> | |
$orange:#e24d25; | |
header { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
z-index: 9999; | |
background-color: #e24d25; | |
color: White; |
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="post" action="addemail.php"> | |
<label for="firstname">First name:</label> | |
<input type="text" id="firstname" name="firstname" /> | |
<label for="lastname">Last name:</label> | |
<input type="text" id="lastname" name="lastname" /> | |
<label for="email">Email:</label> | |
<input type="text" id="email" name="email" /> | |
<input type="submit" name="Submit" value="Submit" /> | |
</form> |
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 font-size($sizeValue: 16, $line: $sizeValue * 1.5) { | |
font-size: ($sizeValue) + px; | |
line-height: ($line) + px; | |
font-size: ($sizeValue / 16) + rem; | |
line-height: ($line / 16) + rem; | |
} |
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
// calculating some values | |
var header_height = $('.header').outerHeight(), | |
scroll_top_icon = $('#scroll-to-top'), | |
scrollTop = $(window).scrollTop(); | |
// Scroll to top function 1/2 | |
$(function(){ | |
$(window).scroll(function(){ | |
if( scrollTop > header_height ){ | |
scroll_top_icon.fadeIn(); |
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
<section id="forms" class="row section"> | |
<div class="large-12 columns"> | |
<h1>Forms</h1> | |
</div> | |
<span class="gist"><a class="icon icon-ajmn-embed" href="https://gist.github.com/capitalJT/c71f0c898fd52c501a96" target="_blank"></a></span> | |
<hr> | |
<div class="large-12 columns"> | |
<div class="medium-4 columns"> | |
<form action="#"> | |
<label>Name |
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
<section id="accordian" class="row section"> | |
<div class="large-12 columns"> | |
<h1>Accordian</h1> | |
</div> | |
<span class="gist"><a class="icon icon-ajmn-embed" href="https://gist.github.com/capitalJT/13d3120ac48cfdd55fc8" target="_blank"></a></span> | |
<hr> | |
<div class="large-12 columns accordian-wrapper"> | |
<dl class="accordion" data-accordion> | |
<dd class="accordion-navigation"> | |
<a href="#panel1-1"> |
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
<section id="hero" class="row section"> | |
<div class="large-12 columns"> | |
<h1>Hero</h1> | |
</div> | |
<span class="gist"><a class="icon icon-ajmn-embed" href="https://gist.github.com/capitalJT/0d388ec30882f6c7b3d7" target="_blank"></a></span> | |
<hr> | |
<div class="large-12 columns hero-component"> | |
<div class="hero"> | |
<h1>Hello World!</h1> | |
<p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p> |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
source ~/.profile | |
export PATH=/usr/local/bin:$PATH | |
# This is the bash profile for the machine at work. | |
# Custom BASH profile | |
# Add MAMP path to our path | |
PATH=/Applications/MAMP/bin/php/php5.6.7/bin:/Applications/MAMP/Library/bin:$PATH | |
export PATH |
OlderNewer