Skip to content

Instantly share code, notes, and snippets.

View cnaa97's full-sized avatar

Junho Park cnaa97

View GitHub Profile
@cnaa97
cnaa97 / CSS3 Media Queries Template
Created September 13, 2016 12:37
CSS3 Media Queries template
/*
* Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/
*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
}
@cnaa97
cnaa97 / multiplication.js
Last active September 7, 2018 06:36
Multiplication Table using Javascript Generator
/**
* 코드스피츠 3기 함수편의 2회차 과제를 제출합니다.
*
* 다음의 코드는 구구단을 출력한다.
* 이를 만족하는 제네레이터를 작성하시오.
*/
const generator = function*(i, j) {
for (let x=1; x<=i; x++) {
for (let y=1; y<=j; y++) {
@cnaa97
cnaa97 / css3-crossbrowser.css
Created June 12, 2019 06:47 — forked from pilssalgi/css3-crossbrowser.css
css3 crossbrowser
CSS3, please!
This element will receive instant changes as you edit the CSS rules on the left. Enjoy!
/* [toggle styling] */
/* -------------------------------------------------------------
CSS3, Please! The Cross-Browser CSS3 Rule Generator
===================================================
You can edit the underlined values in this css file,
but don't worry about making sure the corresponding
values match, that's all done automagically for you.
# EditorConfig is awesome: https://EditorConfig.org
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true