View _grid
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
$width-Container: 1200px; | |
$gutter-Row: 15px; | |
.Container { | |
max-width: $width-Container + $gutter-Row * 2; | |
margin-right: auto; | |
margin-left: auto; | |
padding-right: $gutter-Row; | |
padding-left: $gutter-Row; | |
} |
View main.scss
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
@import "normalize"; | |
@import "basicss"; |
View SassMeister-input.scss
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
// ---- | |
// Sass (v3.4.11) | |
// Compass (v1.0.3) | |
// ---- | |
$vakitler: ( | |
("imsak" "10" "4" "3" "2" "1" "1"), | |
("gunes" "3" "10" "3" "2" "1" "1"), | |
("ogle" "2" "3" "10" "3" "2" "1"), | |
("ikindi" "1" "2" "3" "10" "3" "2"), |
View SassMeister-input.scss
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
// ---- | |
// Sass (v3.4.11) | |
// Compass (v1.0.3) | |
// ---- | |
$times: "imsak", "gunes", "ogle", "ikindi", "aksam", "yatsi"; | |
$sizes: | |
10 3 2 1 1 1, | |
2 10 3 2 1 1, |
View gmap-fullscreen.js
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() { | |
var map = new google.maps.Map(document.getElementById("map_canvas"), {}); | |
var newyork = new google.maps.LatLng(40.69847032728747, -73.9514422416687); | |
var googleMapWidth = $("#map_canvas").css('width'); | |
var googleMapHeight = $("#map_canvas").css('height'); | |
map.setCenter(newyork); | |
$('#enter-full-screen').click(function(){ |
View templateResult.js
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
if (lineType == "Bus") { | |
markup = '<div class="ResultOption" data-line-type="Bus">' + | |
'<div class="ResultOption-figure">' + data.code + '</div>' + | |
'<div class="ResultOption-text">' + | |
'<div class="ResultOption-text_row1">' + data.from_name + '</div>' + | |
'<div class="ResultOption-text_row2">' + data.go_name + '</div>' + | |
'</div>' + | |
'</div>'; |
View dabblet.css
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
select { | |
-webkit-appearance: button; | |
-webkit-border-radius: 3px; | |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
-webkit-padding-end: 20px; | |
-webkit-padding-start: 8px; | |
-webkit-user-select: none; | |
background-image: url("http://dl.dropbox.com/u/6874407/select.png"), |
View dabblet.css
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
select { | |
-webkit-appearance: button; | |
-webkit-border-radius: 3px; | |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
-webkit-padding-end: 20px; | |
-webkit-padding-start: 10px; | |
-webkit-user-select: none; | |
background-image: url("http://dl.dropbox.com/u/6874407/select.png"), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5) |
View index.slim
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
#loading | |
/! shadow | |
.outer-shadow | |
/! mask | |
.inner-shadow | |
.load | |
.dot | |
span | |
#left.hold | |
.pie |
View gist:4648578
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
ul.menu li a:link, | |
ul.menu li a:hover, | |
ul.menu li a:focus, | |
ul.menu li a:visited{ | |
color:red; | |
} |
OlderNewer