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
| $list: mouse smartphone cup notebook remote-control book; | |
| $map: ( | |
| mouse: 20px 12px, | |
| smartphone: 40px 22px, | |
| cup: 30px 62px, | |
| notebook: 100px 34px, | |
| remote-control: 1000px 300px, | |
| book: 820px 42px | |
| ); |
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
Show hidden characters
| { | |
| // Typography | |
| "font_family" : "Source Code Pro", | |
| "font_size" : 15.0, | |
| "font_options" : [ "no_bold", "no_italic" ], | |
| // Padding | |
| "line_padding_top" : 1, | |
| "line_padding_bottom" : 1, |
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
| [ | |
| // Sidebar Enhancement κΈ°λ₯ λ¨μΆν€ μ€μ | |
| { "keys": ["ctrl+alt+n"] , "command": "side_bar_new_file" }, | |
| { "keys": ["f2"] , "command": "side_bar_rename" }, | |
| { "keys": ["ctrl+alt+m"] , "command": "side_bar_move" }, | |
| { "keys": ["ctrl+alt+d"] , "command": "side_bar_delete" } | |
| ] | |
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
| <!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 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
| <div id="header"> | |
| header | |
| </div> | |
| <div class="container"> | |
| container | |
| </div> | |
| <div id="footer"> | |
| footer |
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
| //////////////////////////////// | |
| // Singularity.gs v1.2 μ€μ μ€λν« | |
| //////////////////////////////// | |
| // μ€μ μ΅μ | |
| //////////////////////////////// | |
| // λλ²κΉ λͺ¨λ νμ±ν : false | true | |
| +sgs-change('debug', true) | |
| // 그리λ λ°©ν₯ : ltr | rtl | both |
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
| alias ls='ls -ph -1 --color=auto --show-control-chars' | |
| alias lsa='ls -al --color=auto --show-control-chars' |
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
| # Project Dire tory Layout | |
| src/ | |
| files/ | |
| fonts/ | |
| images/ | |
| js/ | |
| collections/ | |
| controllers/ | |
| main.js |
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
| <!DOCTYPE html> | |
| <html lang="ko-KR"> | |
| <head> | |
| <meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
| <meta charset="UTF-8"> | |
| <title>Float Design</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | |
| <style> | |
| .fl { float: left; } | |
| .fr { float: right; } |