diff --git a/2-ui/2-events/03-event-delegation/4-behavior-tooltip/solution.view/index.html b/2-ui/2-events/03-event-delegation/4-behavior-tooltip/solution.view/index.html index 31d0d46b..1ef37cdc 100644 --- a/2-ui/2-events/03-event-delegation/4-behavior-tooltip/solution.view/index.html +++ b/2-ui/2-events/03-event-delegation/4-behavior-tooltip/solution.view/index.html @@ -15,7 +15,7 @@ border: 1px solid #b3c9ce; border-radius: 4px; text-align: center; - font: italic 14px/1.3 arial, sans-serif; + font: italic 14px/1.3 sans-serif; color: #333; background: #fff; box-shadow: 3px 3px 3px rgba(0, 0, 0, .3); diff --git a/2-ui/2-events/03-event-delegation/4-behavior-tooltip/source.view/index.html b/2-ui/2-events/03-event-delegation/4-behavior-tooltip/source.view/index.html index 57a19d01..add3b214 100644 --- a/2-ui/2-events/03-event-delegation/4-behavior-tooltip/source.view/index.html +++ b/2-ui/2-events/03-event-delegation/4-behavior-tooltip/source.view/index.html @@ -16,7 +16,7 @@ border: 1px solid #b3c9ce; border-radius: 4px; text-align: center; - font: italic 14px/1.3 arial, sans-serif; + font: italic 14px/1.3 sans-serif; color: #333; background: #fff; box-shadow: 3px 3px 3px rgba(0, 0, 0, .3); diff --git a/2-ui/2-events/04-default-browser-action/3-image-gallery/solution.view/gallery.css b/2-ui/2-events/04-default-browser-action/3-image-gallery/solution.view/gallery.css index 66690e53..4522006a 100644 --- a/2-ui/2-events/04-default-browser-action/3-image-gallery/solution.view/gallery.css +++ b/2-ui/2-events/04-default-browser-action/3-image-gallery/solution.view/gallery.css @@ -1,16 +1,16 @@ body { margin: 0; padding: 0; - font: 75%/120% Arial, Helvetica, sans-serif; + font: 75%/120% sans-serif; } h2 { - font: bold 190%/100% Arial, Helvetica, sans-serif; + font: bold 190%/100% sans-serif; margin: 0 0 .2em; } h2 em { - font: normal 80%/100% Arial, Helvetica, sans-serif; + font: normal 80%/100% sans-serif; color: #999999; } diff --git a/2-ui/2-events/04-default-browser-action/3-image-gallery/source.view/gallery.css b/2-ui/2-events/04-default-browser-action/3-image-gallery/source.view/gallery.css index 0c5061c2..b6e52301 100644 --- a/2-ui/2-events/04-default-browser-action/3-image-gallery/source.view/gallery.css +++ b/2-ui/2-events/04-default-browser-action/3-image-gallery/source.view/gallery.css @@ -1,16 +1,16 @@ body { margin: 0; padding: 0; - font: 75%/120% Arial, Helvetica, sans-serif; + font: 75%/120% sans-serif; } h2 { - font: bold 190%/100% Arial, Helvetica, sans-serif; + font: bold 190%/100% sans-serif; margin: 0 0 .2em; } h2 em { - font: normal 80%/100% Arial, Helvetica, sans-serif; + font: normal 80%/100% sans-serif; color: #999999; } diff --git a/2-ui/2-events/04-default-browser-action/menu.view/menu.css b/2-ui/2-events/04-default-browser-action/menu.view/menu.css index 4c172e05..32494ae9 100644 --- a/2-ui/2-events/04-default-browser-action/menu.view/menu.css +++ b/2-ui/2-events/04-default-browser-action/menu.view/menu.css @@ -9,7 +9,7 @@ outline: none; text-align: center; text-decoration: none; - font: 14px/100% Arial, Helvetica, sans-serif; + font: 14px/100% sans-serif; padding: .5em 2em .55em; text-shadow: 0 1px 1px rgba(0, 0, 0, .3); border-radius: .5em; diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/solution.view/index.html b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/solution.view/index.html index 8fbae4c7..c8e879f2 100644 --- a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/solution.view/index.html +++ b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/solution.view/index.html @@ -18,7 +18,7 @@ border: 1px solid #b3c9ce; border-radius: 4px; text-align: center; - font: italic 14px/1.3 arial, sans-serif; + font: italic 14px/1.3 sans-serif; color: #333; background: #fff; box-shadow: 3px 3px 3px rgba(0, 0, 0, .3); diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/source.view/index.html b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/source.view/index.html index 8abb923d..2dc4394e 100644 --- a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/source.view/index.html +++ b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/1-behavior-nested-tooltip/source.view/index.html @@ -18,7 +18,7 @@ border: 1px solid #b3c9ce; border-radius: 4px; text-align: center; - font: italic 14px/1.3 arial, sans-serif; + font: italic 14px/1.3 sans-serif; color: #333; background: #fff; box-shadow: 3px 3px 3px rgba(0, 0, 0, .3); diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/solution.view/style.css b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/solution.view/style.css index f0736f3e..fa2f09eb 100644 --- a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/solution.view/style.css +++ b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/solution.view/style.css @@ -30,7 +30,7 @@ body { border: 1px solid #b3c9ce; border-radius: 4px; text-align: center; - font: italic 14px/1.3 arial, sans-serif; + font: italic 14px/1.3 sans-serif; color: #333; background: #fff; z-index: 100000; diff --git a/2-ui/4-forms-controls/2-focus-blur/3-editable-div/solution.view/my.css b/2-ui/4-forms-controls/2-focus-blur/3-editable-div/solution.view/my.css index 10e9ddc2..67905e6d 100644 --- a/2-ui/4-forms-controls/2-focus-blur/3-editable-div/solution.view/my.css +++ b/2-ui/4-forms-controls/2-focus-blur/3-editable-div/solution.view/my.css @@ -2,7 +2,7 @@ .edit { height: 150px; width: 400px; - font-family: arial; + font-family: sans-serif; font-size: 14px; display: block; } diff --git a/2-ui/4-forms-controls/2-focus-blur/3-editable-div/source.view/my.css b/2-ui/4-forms-controls/2-focus-blur/3-editable-div/source.view/my.css index 10e9ddc2..67905e6d 100644 --- a/2-ui/4-forms-controls/2-focus-blur/3-editable-div/source.view/my.css +++ b/2-ui/4-forms-controls/2-focus-blur/3-editable-div/source.view/my.css @@ -2,7 +2,7 @@ .edit { height: 150px; width: 400px; - font-family: arial; + font-family: sans-serif; font-size: 14px; display: block; } diff --git a/archive/01-hello-world/1-hello-alert/solution.md b/archive/01-hello-world/1-hello-alert/solution.md deleted file mode 100644 index e69de29b..00000000 diff --git a/archive/01-hello-world/1-hello-alert/solution.view/index.html b/archive/01-hello-world/1-hello-alert/solution.view/index.html deleted file mode 100644 index 45e6744b..00000000 --- a/archive/01-hello-world/1-hello-alert/solution.view/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -
- - - - - - \ No newline at end of file diff --git a/archive/01-hello-world/1-hello-alert/task.md b/archive/01-hello-world/1-hello-alert/task.md deleted file mode 100644 index afed6a91..00000000 --- a/archive/01-hello-world/1-hello-alert/task.md +++ /dev/null @@ -1,12 +0,0 @@ -importance: 5 - ---- - -# Show an alert - -Create a page that shows a message "I'm JavaScript!". - -Do it in a sandbox, or on your hard drive, doesn't matter, just ensure that it works. - -[demo src="solution"] - diff --git a/archive/01-hello-world/article.md b/archive/01-hello-world/article.md deleted file mode 100644 index b08909eb..00000000 --- a/archive/01-hello-world/article.md +++ /dev/null @@ -1,90 +0,0 @@ -# Hello, world! - -About 98% of the tutorial is core Javascript, that is platform-independant. So you'll be able to learn how to use Node.JS and other things based on that knowledge. - -But we need something like a "base environment" to run our scripts, and browser is probably a good choice. - -So we'll start with attaching a script to the webpage. For other environments like Node.JS there are other ways to run it. - -[todo remove defer/async from here and move to 2nd part?] - -## The "script" tag - -[todo need this? and special (need it too?)] -```smart header="What if I want to move faster?" -In the case if you've developed with JavaScript already or have a lot of experience in another language, you can skip detailed explanatins and jump to...After the script.
- -