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
<div class="foo">foo</div> | |
<div class="bar">bar</div> | |
<div class="baz">baz</div> | |
<div class="gar"> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, |
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' |
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
# Compass 프로젝트 생성 | |
compass create 프로젝트폴더이름 | |
# Compass 클린(불필요한 내용 지우기, 캐시, stylesheets 내부 모든 파일 제거)파일 | |
compass clean | |
# sass 폴더 내부의 모든 *.scss 파일을 제거 | |
rm sass/*.scss | |
# stylesheets 폴더 제거 |
NewerOlder