Skip to content

Instantly share code, notes, and snippets.

View JeongInyoung's full-sized avatar

UI Developer Project Management JeongInyoung

View GitHub Profile
anonymous
anonymous / Menu-Toggle-button-with-flat-menu.markdown
Created September 24, 2014 01:13
A Pen by Geoffrey Crofte.
@LukyVj
LukyVj / SassIconicSystem.scss
Last active August 29, 2015 14:05
SASS Iconic SVG system
$icons: "facebook", "twitter", "instagram";
$size: 1.2em;
@each $icon in $icons {
.ico{
display: block;
&:before{
content: '';
display: block;
width: $size;
@dstyle0210
dstyle0210 / gist:b105b613be36c04b252b
Last active August 29, 2015 14:04 — forked from ace4gi/gist:a11a55b4ae52fbd309dc
모바일 즐겨찾기 아이콘 적용 : shortcut icon
<!--
icon 만들기 : http://iconverticons.com/online/
아이폰 : apple-touch-icon
안드로이드 : shortcut icon
-->
<link rel="shortcut icon" href="${cp}/images/common/app_icon1.icon" /><!-- size:48x48 -->
<link rel="apple-touch-icon" href="${cp}/images/common/app_icon2.png" /><!-- size:114x114 -->
@yamoo9
yamoo9 / config.rb
Created June 9, 2014 23:25
Compass 프로젝트 config.rb
# Compass 플러그인 추가
# CSS 파일 기본 인코딩(Default Encoding) 설정
# Windows에서 한글, 일어, 중국어 등 SCSS 파일을 CSS로 컴파일 시 문자 인코딩 에러가 생길 경우
# 아래 코드를 설정하여 기본 인코딩을 UTF-8로 설정하면 문제가 해결됨.
Encoding.default_external = "utf-8"
# 프로젝트 내 폴더 경로 지정
http_path = "/"
css_dir = "css"
@elisechant
elisechant / _config.scss
Last active October 9, 2017 15:38
IE handling with SASS, Susy and HTML Conditionals. See https://github.com/bensmithett/style, http://jakearchibald.github.io/sass-ie/ Use a global SASS variable to state IE as Boolean. Serve different stylesheets.
$ie8: false !default;
$ie9: false !default;
$lt-ie9: $ie7 or $ie8;
// Compass cross-browser support configuration
// http://compass-style.org/reference/compass/support/
$legacy-support-for-ie6: false;
$legacy-support-for-ie7: $ie7;
$legacy-support-for-ie8: $ie8;
@ricardozea
ricardozea / ie67891011-css-hacks.txt
Last active February 2, 2023 15:17
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================