diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..67bf00a --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +emacser.tw \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 39c2991..0000000 --- a/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# Vim 正體中文社群 - -討論及分享 Vim 相關技巧的小圈圈,請儘量使用正體中文發言,謝謝。 - -## 聯繫管道 - -* Telegram 群組聊天室: https://telegram.me/joinchat/CPYvygKUxvnd8xrGsW26MA -* Mail list: https://groups.google.com/forum/?fromgroups#!forum/vim-taiwan -* IRC: vim-tw@irc.freenode.net - -## 相關連結 - -* Facebook 社團: https://www.facebook.com/groups/vim.tw/ -* Vim Taiwan @ GitHub - https://github.com/vim-tw -* @be_vimmer_tw - https://twitter.com/be_vimmer_tw -* Vim 推廣貼紙 - https://gist.github.com/chusiang/b608909bccff6ed62eb7 - ----- - -Coypright © from 2015 Vim Taiwan CC BY-NC 2.5 TW. diff --git a/README.org b/README.org new file mode 100644 index 0000000..116e84e --- /dev/null +++ b/README.org @@ -0,0 +1,5 @@ +* Emacs 台灣社群 + +這是 Emacs 台灣社群的首頁repo。 + +https://emacs-tw.github.io/ diff --git a/images/copyleft.svg b/images/copyleft.svg new file mode 100644 index 0000000..65cd9b0 --- /dev/null +++ b/images/copyleft.svg @@ -0,0 +1,8 @@ + + + + + diff --git a/images/empty.png b/images/empty.png new file mode 100644 index 0000000..0c10f36 Binary files /dev/null and b/images/empty.png differ diff --git a/images/toolbar.png b/images/toolbar.png new file mode 100644 index 0000000..159a824 Binary files /dev/null and b/images/toolbar.png differ diff --git a/index.html b/index.html index e2e8cbc..f383197 100644 --- a/index.html +++ b/index.html @@ -1,15 +1,15 @@ - + - Vim 正體中文社群 - - + Emacs 台灣社群 + - + + - Fork me on GitHub - -
- 1 # Vim 正體中文社群
- 2 
- 3 討論及分享 Vim 相關技巧的小圈圈,請儘量使用正體中文發言,謝謝。
- 4 
- 5 ## 聯繫管道
- 6 
- 7 * Telegram 群組聊天室: https://telegram.me/joinchat/CPYvygKUxvnd8xrGsW26MA
- 8 * Mail list: https://groups.google.com/forum/?fromgroups#!forum/vim-taiwan
- 9 * IRC: vim-tw@irc.freenode.net
-10 
-11 ## 相關連結
-12 
-13 * Facebook 社團: https://www.facebook.com/groups/vim.tw/
-14 * Vim Taiwan @ GitHub - https://github.com/vim-tw
-15 * @be_vimmer_tw - https://twitter.com/be_vimmer_tw
-16 * Vim 推廣貼紙 - https://gist.github.com/chusiang/b608909bccff6ed62eb7
-17  
-18 ----
-19 
-20 Coypright © from 2015 Vim Taiwan CC BY-NC 2.5 TW.
-    
+ diff --git a/stylesheets/interface.css b/stylesheets/interface.css new file mode 100644 index 0000000..eaaafc0 --- /dev/null +++ b/stylesheets/interface.css @@ -0,0 +1,70 @@ +* { + margin:0; + font-family:"Source Code Pro",Consolas,Monaco,Menlo,Consolas,monospace; +} +body { + min-width:900px; +} + +#toolbar { + position:fixed; + background-image: url('https://github.com/images/empty.png'); + background-repeat: repeat-x; + background-attachment: fixed; + width:100%; + +} + +.gutter { + background-color: #4e4e4e; + color:#b2b2b2; + margin-right: 0.5em; + padding-left: 0.5em; + +} + +.code { + width:800px; + +} + +.line { + height:22.4px; +} +footer { + position: fixed; + bottom:0; + width:100%; + +} + +#mode-line { + background-color: #87D7AF; + color:#005f5f; + white-space: nowrap; +} + +#minibuffer { + background-color: #303030; +} + +.gutter, .code { + float:left; + margin-top:72px; + +} + +@keyframes blink {50% { opacity: 0.0; }} +@-webkit-keyframes blink {50% { opacity: 0.0; }} +@-moz-keyframes blink {50% { opacity: 0.0; }} + + +.cursor { + animation: blink 1s step-end infinite; + -webkit-animation: blink 1s step-end infinite; + -moz-animation: blink 1s step-end infinite; +} + +#main { + margin-bottom: 2.25em; +} diff --git a/stylesheets/jellybeans.vim.css b/stylesheets/jellybeans.emacs.css similarity index 69% rename from stylesheets/jellybeans.vim.css rename to stylesheets/jellybeans.emacs.css index 4284a58..1db8814 100644 --- a/stylesheets/jellybeans.vim.css +++ b/stylesheets/jellybeans.emacs.css @@ -1,25 +1,25 @@ body { font-family: monospace; color: #e8e8d3; - background-color: #151515; + background-color: #303030; font-size: large; } .Underlined, a { - color: #80a0ff; + color: #afd7ff; text-decoration: underline; } a:hover { - color: #70b950; + color: #5fafd7; } .Identifier { - color: #c6b6ee; + color: #ff8700; } .Title { - color: #70b950; + color: #d7ff00; font-weight: bold; } @@ -28,10 +28,9 @@ a:hover { background-color: #151515; } -pre { +pre, code { white-space: pre-wrap; font-family: monospace; color: #e8e8d3; - background-color: #151515; } diff --git a/stylesheets/normalize.css b/stylesheets/normalize.css index 458eea1..3f1ab46 100644 --- a/stylesheets/normalize.css +++ b/stylesheets/normalize.css @@ -12,14 +12,6 @@ html { -webkit-text-size-adjust: 100%; /* 2 */ } -/** - * Remove default margin. - */ - -body { - margin: 0; -} - /* HTML5 display definitions ========================================================================== */