diff --git a/control-color-html5/css/color.css b/control-color-html5/css/color.css new file mode 100644 index 0000000..a5f07c4 --- /dev/null +++ b/control-color-html5/css/color.css @@ -0,0 +1,52 @@ +*{ + padding: 0; + margin: 0; +} +body{ + background: #ccc; + font: normal 12px Arial, Verdana, Tahoma, sans-serif; + color: #000; +} +a{ + color: #f00; +} +input[type="color"]{ + height: 100px; + width: 200px; +} +h1{ + font-size: 24px; +} +#divContenedor{ + width: 600px; + margin: 0 auto; + margin-top: 70px; + background: #fff; + border-radius: 3px; + box-shadow: 0 0 10px #666; + padding-bottom: 20px; +} + #divInfo{ + text-align: center; + padding: 15px; + } + #divSelector{ + padding: 10px; + text-align: center; + } + #divColor{ + background: #ff006f; + text-align: center; + padding: 20px 0; + width: 200px; + margin: 0 auto; + -webkit-transition: all 1s ease; + -moz-transition: all 1s ease; + -ms-transition: all 1s ease; + -o-transition: all 1s ease; + transition: all 1s ease; + border-radius: 3px; + font-size: 30px; + color: #fff; + text-shadow: 1px 1px 10px #000; + } \ No newline at end of file diff --git a/control-color-html5/index.html b/control-color-html5/index.html new file mode 100644 index 0000000..18884c9 --- /dev/null +++ b/control-color-html5/index.html @@ -0,0 +1,38 @@ + + + + Ejemplo del control color de HTML5 - w ww.lewebmonster.com + + + +
+
+

El control "color" de HTML5

+

+ Ejemplo por Cali Rojas - + www.lewebmonster.com +

+
+
+

- seleccione un color haciendo clic -

+ +

- el color seleccionado es -

+
+
#ff006f
+
+ + + \ No newline at end of file diff --git a/control-color-html5/lewebmonster-control-html5-color.tar.gz b/control-color-html5/lewebmonster-control-html5-color.tar.gz new file mode 100644 index 0000000..63a36cd Binary files /dev/null and b/control-color-html5/lewebmonster-control-html5-color.tar.gz differ