Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
@function ems($target, $context) | |
{ | |
@return $target / $context * 1em | |
} | |
@function percent($target, $context) | |
{ | |
@return $target / $context * 100% | |
} |
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
@mixin breakpoint($breakpoint) | |
{ | |
@if $breakpoint == tablet { | |
@media (max-width: $breakpoint-tablet) { @content; } | |
} | |
@else if $breakpoint == mobile { | |
@media (max-width: $breakpoint-mobile) { @content; } | |
} | |
} |
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
// Arrival Field | |
$('input.datepicker.arrival').datepicker( | |
{ | |
dateFormat: 'mm/dd/yy', | |
minDate: 0 | |
}); | |
// Departure Field | |
$('input.datepicker.departure').datepicker( | |
{ |
NewerOlder