├── .gitignore ├── 604c01cbf6f5ed4fdb9b357200bdb90a11d729d3.css ├── 7590dda2e8d7011039a7ab94fff4059c393a220a.js ├── CNAME ├── LICENSE ├── README.md ├── favicon.ico ├── favicon.jpg ├── fonts └── thin_pixel-7 │ ├── thin_pixel-7.eot │ ├── thin_pixel-7.svg │ ├── thin_pixel-7.ttf │ ├── thin_pixel-7.woff │ └── thin_pixel-7.woff2 ├── img ├── .gitignore ├── aimbulance.svg ├── login-printer.gif ├── login-ufo.gif ├── logo.png ├── message │ ├── 10_sprite.svg │ ├── 11_sprite.svg │ ├── 12_sprite.svg │ ├── 13_sprite.svg │ ├── 14_sprite.svg │ ├── 15_sprite.svg │ ├── 16_sprite.svg │ ├── 17_sprite.svg │ ├── 18_sprite.svg │ ├── 19_sprite.svg │ ├── 1_sprite.svg │ ├── 20_sprite.svg │ ├── 21_sprite.svg │ ├── 22_sprite.svg │ ├── 23_sprite.svg │ ├── 24_sprite.svg │ ├── 25_sprite.svg │ ├── 26_sprite.svg │ ├── 2_sprite.svg │ ├── 3_sprite.svg │ ├── 4_sprite.svg │ ├── 5_sprite.svg │ ├── 6_sprite.svg │ ├── 7_sprite.svg │ ├── 8_sprite.svg │ ├── 9_sprite.svg │ ├── bg.png │ └── card-26.png ├── nf-printer.svg ├── printer │ ├── blue-big-bg.png │ ├── blue-big-printer.png │ ├── btn-bg.png │ ├── btn-left.png │ ├── btn-right.png │ ├── eye-left.png │ ├── eye-right.png │ ├── pink-big-bg.png │ ├── pink-big-printer.png │ ├── purple-big-bg.png │ └── purple-big-printer.png ├── printers │ ├── blue-printer-bg.png │ ├── blue-printer.png │ ├── pink-printer-bg.png │ ├── pink-printer.png │ ├── printer-eye-close.png │ ├── purple-printer-bg.png │ ├── purple-printer.png │ ├── zzz-1.gif │ ├── zzz-2.gif │ ├── zzz-3.gif │ └── zzz-4.gif ├── rm-card.svg ├── sprites │ ├── arrow-bottom.png │ ├── arrow-left.png │ ├── arrow-right.png │ ├── arrow-top.png │ ├── back-arrow.png │ ├── big-printer-tongue.png │ ├── close.png │ ├── forw-arrow.png │ ├── logo-white.png │ ├── pixel-btn-a.png │ ├── pixel-btn-h.png │ ├── pixel-btn.png │ ├── printer-tongue.png │ └── sad-printer.png └── spritesheet.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | node_modules 28 | 29 | # Optional npm cache directory 30 | .npm 31 | 32 | # Optional REPL history 33 | .node_repl_history 34 | -------------------------------------------------------------------------------- /604c01cbf6f5ed4fdb9b357200bdb90a11d729d3.css: -------------------------------------------------------------------------------- 1 | #login-buttons-image-facebook{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAq0lEQVQ4jWP8//8/AyWAhYGBgcEmauYZBgYGYxL1nj2yLN2ECcohVTNcDwsxKlXlhRm6yzwZRAS5GRgYGBhsombC5ZhwaUIGyJrRAVEuwGYzSS7AB/C64MiydKx8ZJfgNeDN+68MDAwIL8D4RLsgIHsJis0wPjKgOAyoE4hcnGwMGkpiBBUbacvA2TfuvaKiC759/3X23NUnOPMDtgTEwMBwloGBgYGR0uwMAGOPLJS9mkQHAAAAAElFTkSuQmCC)} -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | page.teletype.online 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Winnlab 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Teletype 2 | Teletype project 3 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/favicon.ico -------------------------------------------------------------------------------- /favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/favicon.jpg -------------------------------------------------------------------------------- /fonts/thin_pixel-7/thin_pixel-7.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/fonts/thin_pixel-7/thin_pixel-7.eot -------------------------------------------------------------------------------- /fonts/thin_pixel-7/thin_pixel-7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/fonts/thin_pixel-7/thin_pixel-7.ttf -------------------------------------------------------------------------------- /fonts/thin_pixel-7/thin_pixel-7.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/fonts/thin_pixel-7/thin_pixel-7.woff -------------------------------------------------------------------------------- /fonts/thin_pixel-7/thin_pixel-7.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/fonts/thin_pixel-7/thin_pixel-7.woff2 -------------------------------------------------------------------------------- /img/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/.gitignore -------------------------------------------------------------------------------- /img/aimbulance.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /img/login-printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/login-printer.gif -------------------------------------------------------------------------------- /img/login-ufo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/login-ufo.gif -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/logo.png -------------------------------------------------------------------------------- /img/message/10_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/11_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/12_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/15_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/17_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/19_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/1_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/21_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/22_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/26_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/2_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/3_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/4_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/5_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/6_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/7_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/8_sprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/message/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/message/bg.png -------------------------------------------------------------------------------- /img/message/card-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/message/card-26.png -------------------------------------------------------------------------------- /img/nf-printer.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /img/printer/blue-big-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/blue-big-bg.png -------------------------------------------------------------------------------- /img/printer/blue-big-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/blue-big-printer.png -------------------------------------------------------------------------------- /img/printer/btn-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/btn-bg.png -------------------------------------------------------------------------------- /img/printer/btn-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/btn-left.png -------------------------------------------------------------------------------- /img/printer/btn-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/btn-right.png -------------------------------------------------------------------------------- /img/printer/eye-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/eye-left.png -------------------------------------------------------------------------------- /img/printer/eye-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/eye-right.png -------------------------------------------------------------------------------- /img/printer/pink-big-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/pink-big-bg.png -------------------------------------------------------------------------------- /img/printer/pink-big-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/pink-big-printer.png -------------------------------------------------------------------------------- /img/printer/purple-big-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/purple-big-bg.png -------------------------------------------------------------------------------- /img/printer/purple-big-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printer/purple-big-printer.png -------------------------------------------------------------------------------- /img/printers/blue-printer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/blue-printer-bg.png -------------------------------------------------------------------------------- /img/printers/blue-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/blue-printer.png -------------------------------------------------------------------------------- /img/printers/pink-printer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/pink-printer-bg.png -------------------------------------------------------------------------------- /img/printers/pink-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/pink-printer.png -------------------------------------------------------------------------------- /img/printers/printer-eye-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/printer-eye-close.png -------------------------------------------------------------------------------- /img/printers/purple-printer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/purple-printer-bg.png -------------------------------------------------------------------------------- /img/printers/purple-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/purple-printer.png -------------------------------------------------------------------------------- /img/printers/zzz-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/zzz-1.gif -------------------------------------------------------------------------------- /img/printers/zzz-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/zzz-2.gif -------------------------------------------------------------------------------- /img/printers/zzz-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/zzz-3.gif -------------------------------------------------------------------------------- /img/printers/zzz-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/printers/zzz-4.gif -------------------------------------------------------------------------------- /img/rm-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /img/sprites/arrow-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/arrow-bottom.png -------------------------------------------------------------------------------- /img/sprites/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/arrow-left.png -------------------------------------------------------------------------------- /img/sprites/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/arrow-right.png -------------------------------------------------------------------------------- /img/sprites/arrow-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/arrow-top.png -------------------------------------------------------------------------------- /img/sprites/back-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/back-arrow.png -------------------------------------------------------------------------------- /img/sprites/big-printer-tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/big-printer-tongue.png -------------------------------------------------------------------------------- /img/sprites/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/close.png -------------------------------------------------------------------------------- /img/sprites/forw-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/forw-arrow.png -------------------------------------------------------------------------------- /img/sprites/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/logo-white.png -------------------------------------------------------------------------------- /img/sprites/pixel-btn-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/pixel-btn-a.png -------------------------------------------------------------------------------- /img/sprites/pixel-btn-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/pixel-btn-h.png -------------------------------------------------------------------------------- /img/sprites/pixel-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/pixel-btn.png -------------------------------------------------------------------------------- /img/sprites/printer-tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/printer-tongue.png -------------------------------------------------------------------------------- /img/sprites/sad-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/sprites/sad-printer.png -------------------------------------------------------------------------------- /img/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winnlab/Teletype/b01de9315b7c59126a15cf7a3c30e3c216e9bd29/img/spritesheet.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Teletype 5 | 6 | 7 | 8 | 9 | 10 | 37 | 38 | 41 | 42 | 43 | 44 | 45 | 46 | --------------------------------------------------------------------------------