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
/* Thin */ | |
@font-face { | |
font-family: 'NotoSansKR'; | |
font-style: normal; | |
font-weight: 250; | |
src: local('NotoSansKR-Thin'), | |
url('//cdn.jsdelivr.net/korean-webfonts/latest/corps/google/NotoSansKR/NotoSansKR-Thin-Hangul.woff2') format('woff2'), | |
url('//cdn.jsdelivr.net/korean-webfonts/latest/corps/google/NotoSansKR/NotoSansKR-Thin-Hangul.woff') format('woff'); | |
font-stretch: normal; | |
unicode-range: U+0021-33FF,U+A000-F8FF,U+FB00-F251; |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<title>Document</title> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" charset="utf-8"></script> | |
<script type="text/javascript"> | |
<!-- // | |
$(function(){ | |
$('input[type="submit"]:eq(0)').on('click', function(event){ |
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(global, y9){ | |
'use strict'; | |
// scrollFollow 객체 정의 | |
var scrollFollow = { | |
/** | |
* 초기 설정(Initialization) 메소드 | |
* yamoo9.scrollFollow.init( | |
* [문자] el : 적용대상 요소 선택자, | |
* [숫자] start_pos : 시작 위치, |
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
<!DOCTYPE html> | |
<html lang="ko-KR"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<meta charset="UTF-8"> | |
<title>XP, IE10 미만 브라우저 접근 금지</title> | |
<script> | |
(function(){ | |
var OSV = navigator.appVersion, | |
OSName="Unknown OS"; |
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
<!DOCTYPE html> | |
<html lang="ko-KR"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<meta charset="UTF-8"> | |
<title>삼각형 만들기</title> | |
<style> | |
.triangle-top { | |
width: 0px; | |
height: 0px; |
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
<div class="container"> | |
<div class="one"></div> | |
<div class="two"></div> | |
<div class="three"></div> | |
</div> |
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 generate-960gs ( | |
$grid_count: 12 | |
) { | |
@if($grid_count != 12 or $grid_count != 16 or $grid_count != 24) { | |
@warn "960 그리드 시스템에 해당하는 숫자 값이 아닙니다."; | |
@debug "입력하신 전달인자 $grid_count 값은 #{$grid_count}(#{type-of($grid_count)}) 입니다."; | |
} | |
// ======================================= | |
// Grid Options | |
// ======================================= |
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 'http://rubygems.org' | |
gem 'compass', '~>1.0.0.alpha.13' | |
gem 'breakpoint', '~>2.4.2' | |
gem 'singularitygs', '~>1.2.0.rc.6' | |
gem 'singularity-extras', '~>1.0.0.alpha.3' | |
gem 'toolkit', '~>2.0.0.alpha.7' | |
gem 'susy', :git => 'git://github.com/ericam/susy.git', :tag => 'v1.0.rc.1' |