From 54bb07c4bc504a975e71481f61fc13fb5b2a9c30 Mon Sep 17 00:00:00 2001 From: Armen Vartan Date: Mon, 1 Dec 2014 17:23:07 -0500 Subject: [PATCH] deleted js files --- .../3-conditionals-and-for-loops/index.html | 18 ------- python/3-conditionals-and-for-loops/main.css | 36 -------------- python/3-conditionals-and-for-loops/main.js | 12 ----- python/3-conditionals-and-for-loops/reset.css | 47 ------------------- python/4-while-loops-and-for-each/index.html | 18 ------- python/4-while-loops-and-for-each/main.css | 36 -------------- python/4-while-loops-and-for-each/main.js | 8 ---- python/4-while-loops-and-for-each/reset.css | 47 ------------------- python/5-triangles-part-1/index.html | 18 ------- python/5-triangles-part-1/main.css | 41 ---------------- python/5-triangles-part-1/main.js | 6 --- python/5-triangles-part-1/reset.css | 47 ------------------- python/6-triangles-part-2/index.html | 18 ------- python/6-triangles-part-2/main.css | 41 ---------------- python/6-triangles-part-2/main.js | 6 --- python/6-triangles-part-2/reset.css | 47 ------------------- python/7-todo-list/index.html | 22 --------- python/7-todo-list/main.css | 41 ---------------- python/7-todo-list/main.js | 20 -------- python/7-todo-list/reset.css | 47 ------------------- 20 files changed, 576 deletions(-) delete mode 100644 python/3-conditionals-and-for-loops/index.html delete mode 100644 python/3-conditionals-and-for-loops/main.css delete mode 100644 python/3-conditionals-and-for-loops/main.js delete mode 100644 python/3-conditionals-and-for-loops/reset.css delete mode 100644 python/4-while-loops-and-for-each/index.html delete mode 100644 python/4-while-loops-and-for-each/main.css delete mode 100644 python/4-while-loops-and-for-each/main.js delete mode 100644 python/4-while-loops-and-for-each/reset.css delete mode 100644 python/5-triangles-part-1/index.html delete mode 100644 python/5-triangles-part-1/main.css delete mode 100644 python/5-triangles-part-1/main.js delete mode 100644 python/5-triangles-part-1/reset.css delete mode 100644 python/6-triangles-part-2/index.html delete mode 100644 python/6-triangles-part-2/main.css delete mode 100644 python/6-triangles-part-2/main.js delete mode 100644 python/6-triangles-part-2/reset.css delete mode 100644 python/7-todo-list/index.html delete mode 100644 python/7-todo-list/main.css delete mode 100644 python/7-todo-list/main.js delete mode 100644 python/7-todo-list/reset.css diff --git a/python/3-conditionals-and-for-loops/index.html b/python/3-conditionals-and-for-loops/index.html deleted file mode 100644 index fb61bd5..0000000 --- a/python/3-conditionals-and-for-loops/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - -
- -
-
- - - diff --git a/python/3-conditionals-and-for-loops/main.css b/python/3-conditionals-and-for-loops/main.css deleted file mode 100644 index 70a3e86..0000000 --- a/python/3-conditionals-and-for-loops/main.css +++ /dev/null @@ -1,36 +0,0 @@ -body{ - background-color: #D1D1D1 -} - -nav{ - position: absolute; - background-color: black; - width: 100%; - height: 4em; - top: 0; - text-align: center; - line-height: 4em; -} - -nav h1{ - font-size: 3em; - font-family: monospace; - color: white; -} - -#printout{ - width: 800px; - min-height: 1000px; - background-color: white; - margin: 5em auto 0 auto; - color: black; - text-indent: 1em; -} - -#printout p{ - font-size: 2em; -} - -#printout p:nth-child(even) { - background-color: #D1D1D1; -} \ No newline at end of file diff --git a/python/3-conditionals-and-for-loops/main.js b/python/3-conditionals-and-for-loops/main.js deleted file mode 100644 index e80d568..0000000 --- a/python/3-conditionals-and-for-loops/main.js +++ /dev/null @@ -1,12 +0,0 @@ -// set your variables below - -// all jquery dom actions can only be called inside document ready. Print your variables -// inside document ready. - -$(document).ready(function(){ - - for(var i = 0; i<=100; i++){ - - } - -}) \ No newline at end of file diff --git a/python/3-conditionals-and-for-loops/reset.css b/python/3-conditionals-and-for-loops/reset.css deleted file mode 100644 index af5d7e5..0000000 --- a/python/3-conditionals-and-for-loops/reset.css +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) - * http://cssreset.com - */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} \ No newline at end of file diff --git a/python/4-while-loops-and-for-each/index.html b/python/4-while-loops-and-for-each/index.html deleted file mode 100644 index ee570bc..0000000 --- a/python/4-while-loops-and-for-each/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - -
- -
-
- - - diff --git a/python/4-while-loops-and-for-each/main.css b/python/4-while-loops-and-for-each/main.css deleted file mode 100644 index 70a3e86..0000000 --- a/python/4-while-loops-and-for-each/main.css +++ /dev/null @@ -1,36 +0,0 @@ -body{ - background-color: #D1D1D1 -} - -nav{ - position: absolute; - background-color: black; - width: 100%; - height: 4em; - top: 0; - text-align: center; - line-height: 4em; -} - -nav h1{ - font-size: 3em; - font-family: monospace; - color: white; -} - -#printout{ - width: 800px; - min-height: 1000px; - background-color: white; - margin: 5em auto 0 auto; - color: black; - text-indent: 1em; -} - -#printout p{ - font-size: 2em; -} - -#printout p:nth-child(even) { - background-color: #D1D1D1; -} \ No newline at end of file diff --git a/python/4-while-loops-and-for-each/main.js b/python/4-while-loops-and-for-each/main.js deleted file mode 100644 index 2be4586..0000000 --- a/python/4-while-loops-and-for-each/main.js +++ /dev/null @@ -1,8 +0,0 @@ -// set your variables below - -// all jquery dom actions can only be called inside document ready. Print your variables -// inside document ready. - -$(document).ready(function(){ - -}) \ No newline at end of file diff --git a/python/4-while-loops-and-for-each/reset.css b/python/4-while-loops-and-for-each/reset.css deleted file mode 100644 index af5d7e5..0000000 --- a/python/4-while-loops-and-for-each/reset.css +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) - * http://cssreset.com - */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} \ No newline at end of file diff --git a/python/5-triangles-part-1/index.html b/python/5-triangles-part-1/index.html deleted file mode 100644 index 4a74c88..0000000 --- a/python/5-triangles-part-1/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - -
- -
-
- - - diff --git a/python/5-triangles-part-1/main.css b/python/5-triangles-part-1/main.css deleted file mode 100644 index 52b99d4..0000000 --- a/python/5-triangles-part-1/main.css +++ /dev/null @@ -1,41 +0,0 @@ -body{ - background-color: #D1D1D1 -} - -nav{ - position: absolute; - background-color: black; - width: 100%; - height: 4em; - top: 0; - text-align: center; - line-height: 4em; -} - -nav h1{ - font-size: 3em; - font-family: monospace; - color: white; -} - -#numberform{ - margin: 5em auto 0 auto; - width: 20%; -} - -#printout{ - width: 800px; - min-height: 1000px; - background-color: white; - margin: 1em auto 0 auto; - color: black; - text-indent: 1em; -} - -#printout p{ - font-size: 2em; -} - -#printout p:nth-child(even) { - background-color: #D1D1D1; -} \ No newline at end of file diff --git a/python/5-triangles-part-1/main.js b/python/5-triangles-part-1/main.js deleted file mode 100644 index d369e5e..0000000 --- a/python/5-triangles-part-1/main.js +++ /dev/null @@ -1,6 +0,0 @@ -// all jquery dom actions can only be called inside document ready. - -$(document).ready(function(){ - - -}) \ No newline at end of file diff --git a/python/5-triangles-part-1/reset.css b/python/5-triangles-part-1/reset.css deleted file mode 100644 index af5d7e5..0000000 --- a/python/5-triangles-part-1/reset.css +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) - * http://cssreset.com - */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} \ No newline at end of file diff --git a/python/6-triangles-part-2/index.html b/python/6-triangles-part-2/index.html deleted file mode 100644 index e00e24c..0000000 --- a/python/6-triangles-part-2/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - -
- -
-
- - - diff --git a/python/6-triangles-part-2/main.css b/python/6-triangles-part-2/main.css deleted file mode 100644 index 52b99d4..0000000 --- a/python/6-triangles-part-2/main.css +++ /dev/null @@ -1,41 +0,0 @@ -body{ - background-color: #D1D1D1 -} - -nav{ - position: absolute; - background-color: black; - width: 100%; - height: 4em; - top: 0; - text-align: center; - line-height: 4em; -} - -nav h1{ - font-size: 3em; - font-family: monospace; - color: white; -} - -#numberform{ - margin: 5em auto 0 auto; - width: 20%; -} - -#printout{ - width: 800px; - min-height: 1000px; - background-color: white; - margin: 1em auto 0 auto; - color: black; - text-indent: 1em; -} - -#printout p{ - font-size: 2em; -} - -#printout p:nth-child(even) { - background-color: #D1D1D1; -} \ No newline at end of file diff --git a/python/6-triangles-part-2/main.js b/python/6-triangles-part-2/main.js deleted file mode 100644 index d369e5e..0000000 --- a/python/6-triangles-part-2/main.js +++ /dev/null @@ -1,6 +0,0 @@ -// all jquery dom actions can only be called inside document ready. - -$(document).ready(function(){ - - -}) \ No newline at end of file diff --git a/python/6-triangles-part-2/reset.css b/python/6-triangles-part-2/reset.css deleted file mode 100644 index af5d7e5..0000000 --- a/python/6-triangles-part-2/reset.css +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) - * http://cssreset.com - */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} \ No newline at end of file diff --git a/python/7-todo-list/index.html b/python/7-todo-list/index.html deleted file mode 100644 index 7dee44f..0000000 --- a/python/7-todo-list/index.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - -
- -
- - -
-
-
- - - diff --git a/python/7-todo-list/main.css b/python/7-todo-list/main.css deleted file mode 100644 index f08e97e..0000000 --- a/python/7-todo-list/main.css +++ /dev/null @@ -1,41 +0,0 @@ -body{ - background-color: #D1D1D1 -} - -nav{ - position: absolute; - background-color: black; - width: 100%; - height: 4em; - top: 0; - text-align: center; - line-height: 4em; -} - -nav h1{ - font-size: 3em; - font-family: monospace; - color: white; -} - -#todoform{ - margin: 5em auto 0 auto; - width: 20%; -} - -#printout{ - width: 800px; - min-height: 1000px; - background-color: white; - margin: 1em auto 0 auto; - color: black; - text-indent: 1em; -} - -#printout p{ - font-size: 2em; -} - -#printout p:nth-child(even) { - background-color: #D1D1D1; -} \ No newline at end of file diff --git a/python/7-todo-list/main.js b/python/7-todo-list/main.js deleted file mode 100644 index f17886f..0000000 --- a/python/7-todo-list/main.js +++ /dev/null @@ -1,20 +0,0 @@ -// all jquery dom actions can only be called inside document ready. - -function toDoList(){ - -} - -toDoList.prototype.add = function(todo){ - -} - -toDoList.prototype.complete = function(todo){ - -} - -var myList = new toDoList(); - -$(document).ready(function(){ - - -}) \ No newline at end of file diff --git a/python/7-todo-list/reset.css b/python/7-todo-list/reset.css deleted file mode 100644 index af5d7e5..0000000 --- a/python/7-todo-list/reset.css +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) - * http://cssreset.com - */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} \ No newline at end of file