This file contains hidden or 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
# 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 |
This file contains hidden or 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
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. |
This file contains hidden or 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
/** | |
* 코드스피츠 3기 함수편의 2회차 과제를 제출합니다. | |
* | |
* 다음의 코드는 구구단을 출력한다. | |
* 이를 만족하는 제네레이터를 작성하시오. | |
*/ | |
const generator = function*(i, j) { | |
for (let x=1; x<=i; x++) { | |
for (let y=1; y<=j; y++) { |
This file contains hidden or 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
/* | |
* 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 */ | |
} |