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
.Cover__video-source { | |
position: fixed; | |
top: 50%; | |
left: 50%; | |
min-width: 100%; | |
min-height: 100%; | |
width: auto; | |
height: auto; | |
z-index: -100; | |
transform: translateX(-50%) translateY(-50%); |
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
// SHARE COUNT | |
$.getJSON("https://graph.facebook.com/fql?q=SELECT like_count FROM link_stat WHERE url=" + encodeURIComponent('"' + Screenshot.Meta.full_url + '"') + " &callback=?", function(t) { | |
t.data[0] && $("#share-button-fb .shot-social-count").html(shorterTotal(t.data[0].like_count)) | |
}) | |
$.getJSON("http://cdn.api.twitter.com/1/urls/count.json?url=" + encodeURIComponent(Screenshot.Meta.full_url) + "&callback=?", function(t) { | |
t.count && $("#share-button-twitter .shot-social-count").html(shorterTotal(t.count)) | |
}) |
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; | |
} |
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
/** | |
* 1. http://www.paulirish.com/2012/box-sizing-border-box-ftw/ | |
* http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ | |
* http://fatihhayrioglu.com/css3-box-sizing-ozelligi/ | |
* | |
* 2. http://aestheticallyloyal.com/public/optimize-legibility/ | |
* | |
* 3. http://maxvoltar.com/archive/-webkit-font-smoothing | |
* | |
* 4. http://maximilianhoffmann.com/posts/better-font-rendering-on-osx |
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"; |
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"), |
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, |
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
root/ | |
|-- scss/ # https://gist.github.com/ademilter/746cb307f14bd4e32de1#file-scss | |
| | |
|-- js/ # Script klasörü | |
| |-- plugin/ - Eklentilere ait scriptler | |
| |-- pages/ - Sayfalara özel scriptler | |
| |-- plugin.js - Plugin klasöründeki dosyaları bu dosya içinde birleştiriyoruz | |
| |-- main.js - Global olan bütün scriptleri buraya yazıyoruz | |
| | |
|-- img/ # Ham tasarım ve sprite gibi dosyalar (psd, sketch, ai, vs...) |
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(){ |
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
$font-family: ( | |
group: serif, | |
id: regular, | |
name: 'Equity Regular', | |
fallback: (georgia, serif), | |
weight: normal, | |
style: normal, | |
file-name: 'equity_text_b_regular-webfont' | |
), ( | |
group: serif, |