From 5dfc9e102b8a2ac588234d4e50ccbae800c1fc89 Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Wed, 15 Jun 2022 16:05:05 -0300 Subject: [PATCH 1/8] Update Project01.html --- Project01.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Project01.html b/Project01.html index b5cb94e..c7d01cd 100644 --- a/Project01.html +++ b/Project01.html @@ -13,7 +13,7 @@
@@ -64,6 +67,7 @@ +
From 4fc1f9529655378d6bf1ff31aa3f318e2cb1e22d Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Wed, 15 Jun 2022 17:41:45 -0300 Subject: [PATCH 2/8] Update Project01.html --- Project01.html | 104 ++++++++++++++++++++++++++++++------------------- 1 file changed, 63 insertions(+), 41 deletions(-) diff --git a/Project01.html b/Project01.html index c7d01cd..d2d0460 100644 --- a/Project01.html +++ b/Project01.html @@ -1,54 +1,72 @@ - + - - - - Projeto 01 - - -
-
Qual dessas marcas de carro você gosta mais?
-
Which of these car brand do you like the most?
-
+ -
+ + +
@@ -67,8 +85,12 @@ -
- +
+ +
+

What is your favorite car brand?

+

Qual é a sua marca de carro favorita?

+
From 4a8f85ad4c085e1543884fc6418abea1eb40fd5a Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Wed, 15 Jun 2022 21:57:45 -0300 Subject: [PATCH 3/8] Delete Project01.html --- Project01.html | 96 -------------------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 Project01.html diff --git a/Project01.html b/Project01.html deleted file mode 100644 index d2d0460..0000000 --- a/Project01.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - -
- - - - - - - - - - - - - - - - - - -
-
- -
-

What is your favorite car brand?

-

Qual é a sua marca de carro favorita?

-
- - From 7004a7c7141bed4ab8d4902704c6271a2932309e Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Wed, 15 Jun 2022 21:58:11 -0300 Subject: [PATCH 4/8] Add files via upload --- Project01/Project01.CSS | 63 ++++++++++++++++++++++++++++++++++++++++ Project01/Project01.html | 36 +++++++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 Project01/Project01.CSS create mode 100644 Project01/Project01.html diff --git a/Project01/Project01.CSS b/Project01/Project01.CSS new file mode 100644 index 0000000..f562a50 --- /dev/null +++ b/Project01/Project01.CSS @@ -0,0 +1,63 @@ +body, + html { + height: 100%; + margin: 0; + font-family: Arial, Helvetica, sans-serif; + } + * { + box-sizing: border-box; + } + button { + background-color: #ffffff; + border: solid #ff0000; + border-radius: 2px; + } + button:hover { + background-color: #a9a9a9; + } + .bg-image { + /* The image used */ + background-image: url("https://www.sanitecsolution.com.br/images/servicos/limpeza-em-concessionaria-de-automoveis-02.jpg"); + + /* Add the blur effect */ + filter: blur(8px); + -webkit-filter: blur(2px); + + /* Full height */ + height: 100%; + + /* Center and scale the image nicely */ + background-position: center; + background-repeat: no-repeat; + background-size: cover; + } + .item { + display: flex; + flex-wrap: wrap; + max-width: 400px; + position: absolute; + top: 50%; + left: 35%; + transform: translate(-0%, -20%); + z-index: 5; + } + + /* Position text in the middle of the page/image */ + .bg-text { + background-color: #000000; /* Fallback color */ + background-color: #00000066; /* Black w/opacity/see-through */ + color: #ffffff; + font-weight: bold; + border: 3px solid #f1f1f1; + position: absolute; + top: 30%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 2; + width: 70%; + padding: 20px; + text-align: center; + } + h1{ + font-size: 50px; + } \ No newline at end of file diff --git a/Project01/Project01.html b/Project01/Project01.html new file mode 100644 index 0000000..ebfaf74 --- /dev/null +++ b/Project01/Project01.html @@ -0,0 +1,36 @@ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+
+ +
+

What is your favorite car brand?

+

Qual é a sua marca de carro favorita?

+
+ + From db525ec08936c11830ce009f3bd461d56332dcb3 Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Thu, 16 Jun 2022 15:26:45 -0300 Subject: [PATCH 5/8] Update Project01.CSS --- Project01/Project01.CSS | 134 +++++++++++++++++++++------------------- 1 file changed, 72 insertions(+), 62 deletions(-) diff --git a/Project01/Project01.CSS b/Project01/Project01.CSS index f562a50..8e984ee 100644 --- a/Project01/Project01.CSS +++ b/Project01/Project01.CSS @@ -1,63 +1,73 @@ body, - html { - height: 100%; - margin: 0; - font-family: Arial, Helvetica, sans-serif; - } - * { - box-sizing: border-box; - } - button { - background-color: #ffffff; - border: solid #ff0000; - border-radius: 2px; - } - button:hover { - background-color: #a9a9a9; - } - .bg-image { - /* The image used */ - background-image: url("https://www.sanitecsolution.com.br/images/servicos/limpeza-em-concessionaria-de-automoveis-02.jpg"); - - /* Add the blur effect */ - filter: blur(8px); - -webkit-filter: blur(2px); - - /* Full height */ - height: 100%; - - /* Center and scale the image nicely */ - background-position: center; - background-repeat: no-repeat; - background-size: cover; - } - .item { - display: flex; - flex-wrap: wrap; - max-width: 400px; - position: absolute; - top: 50%; - left: 35%; - transform: translate(-0%, -20%); - z-index: 5; - } - - /* Position text in the middle of the page/image */ - .bg-text { - background-color: #000000; /* Fallback color */ - background-color: #00000066; /* Black w/opacity/see-through */ - color: #ffffff; - font-weight: bold; - border: 3px solid #f1f1f1; - position: absolute; - top: 30%; - left: 50%; - transform: translate(-50%, -50%); - z-index: 2; - width: 70%; - padding: 20px; - text-align: center; - } - h1{ - font-size: 50px; - } \ No newline at end of file +html { + height: 100%; + margin: 0; + font-family: Arial, Helvetica, sans-serif; +} + +* { + box-sizing: border-box; +} + +button { + margin-right: 5px; + margin-top: 5px; + color: #ffffff; + background-color: #00000066; + border: solid #ff0000; + border-radius: 2px; + flex-wrap: wrap; +} + +button:hover { + background-color: #919191; +} +.bg-image { + /* The image used */ + background-image: url("https://www.sanitecsolution.com.br/images/servicos/limpeza-em-concessionaria-de-automoveis-02.jpg"); + + /* Add the blur effect */ + filter: blur(8px); + -webkit-filter: blur(2px); + + /* Full height */ + height: 100%; + + /* Center and scale the image nicely */ + background-position: center; + background-repeat: no-repeat; + background-size: cover; +} + +.item { + flex-wrap: wrap; + max-width: 400px; + position: absolute; + text-align: center; + top: 50%; + left: 35%; + transform: translate(-0%, -20%); + z-index: 5; +} +/* Position text in the middle of the page/image */ +.bg-text { + background-color: #000000; + /* Fallback color */ + background-color: #00000066; + /* Black w/opacity/see-through */ + color: #ffffff; + font-weight: bold; + border: 3px solid #ffffff; + position: absolute; + top: 30%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 2; + width: 70%; + padding: 20px; + text-align: center; +} + +h1 { + font-size: 50px; +} From 3c1d5912d3787b8cf1cf7fb4200d7b3273712093 Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Thu, 16 Jun 2022 15:27:20 -0300 Subject: [PATCH 6/8] Update Project01.html From d1edcd6c0d9eaba65c12ff073d0ac1d86d049c19 Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Thu, 23 Jun 2022 00:56:54 -0300 Subject: [PATCH 7/8] Delete Project01 directory --- Project01/Project01.CSS | 73 ---------------------------------------- Project01/Project01.html | 36 -------------------- 2 files changed, 109 deletions(-) delete mode 100644 Project01/Project01.CSS delete mode 100644 Project01/Project01.html diff --git a/Project01/Project01.CSS b/Project01/Project01.CSS deleted file mode 100644 index 8e984ee..0000000 --- a/Project01/Project01.CSS +++ /dev/null @@ -1,73 +0,0 @@ -body, -html { - height: 100%; - margin: 0; - font-family: Arial, Helvetica, sans-serif; -} - -* { - box-sizing: border-box; -} - -button { - margin-right: 5px; - margin-top: 5px; - color: #ffffff; - background-color: #00000066; - border: solid #ff0000; - border-radius: 2px; - flex-wrap: wrap; -} - -button:hover { - background-color: #919191; -} -.bg-image { - /* The image used */ - background-image: url("https://www.sanitecsolution.com.br/images/servicos/limpeza-em-concessionaria-de-automoveis-02.jpg"); - - /* Add the blur effect */ - filter: blur(8px); - -webkit-filter: blur(2px); - - /* Full height */ - height: 100%; - - /* Center and scale the image nicely */ - background-position: center; - background-repeat: no-repeat; - background-size: cover; -} - -.item { - flex-wrap: wrap; - max-width: 400px; - position: absolute; - text-align: center; - top: 50%; - left: 35%; - transform: translate(-0%, -20%); - z-index: 5; -} -/* Position text in the middle of the page/image */ -.bg-text { - background-color: #000000; - /* Fallback color */ - background-color: #00000066; - /* Black w/opacity/see-through */ - color: #ffffff; - font-weight: bold; - border: 3px solid #ffffff; - position: absolute; - top: 30%; - left: 50%; - transform: translate(-50%, -50%); - z-index: 2; - width: 70%; - padding: 20px; - text-align: center; -} - -h1 { - font-size: 50px; -} diff --git a/Project01/Project01.html b/Project01/Project01.html deleted file mode 100644 index ebfaf74..0000000 --- a/Project01/Project01.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - -
- - - - - - - - - - - - - - - - - - -
-
- -
-

What is your favorite car brand?

-

Qual é a sua marca de carro favorita?

-
- - From 2448fdc0130cada0a0c44dfa748fe7c161de841e Mon Sep 17 00:00:00 2001 From: LightBlue44 Date: Thu, 23 Jun 2022 00:57:14 -0300 Subject: [PATCH 8/8] Add files via upload --- Project01/Project01.CSS | 73 ++++++++++++++++++++++++++++++++++++++++ Project01/Project01.html | 36 ++++++++++++++++++++ 2 files changed, 109 insertions(+) create mode 100644 Project01/Project01.CSS create mode 100644 Project01/Project01.html diff --git a/Project01/Project01.CSS b/Project01/Project01.CSS new file mode 100644 index 0000000..2e92941 --- /dev/null +++ b/Project01/Project01.CSS @@ -0,0 +1,73 @@ +body, +html { + height: 100%; + margin: 0; + font-family: Arial, Helvetica, sans-serif; +} + +* { + box-sizing: border-box; +} + +button { + margin-right: 5px; + margin-top: 5px; + color: #ffffff; + background-color: #00000096; + border: solid #ff0000; + border-radius: 2px; + flex-wrap: wrap; +} + +button:hover { + background-color: #919191; +} +.bg-image { + /* The image used */ + background-image: url("https://www.sanitecsolution.com.br/images/servicos/limpeza-em-concessionaria-de-automoveis-02.jpg"); + + /* Add the blur effect */ + filter: blur(8px); + -webkit-filter: blur(2px); + + /* Full height */ + height: 100%; + + /* Center and scale the image nicely */ + background-position: center; + background-repeat: no-repeat; + background-size: cover; +} + +.item { + flex-wrap: wrap; + max-width: 400px; + position: absolute; + text-align: center; + top: 50%; + left: 35%; + transform: translate(-0%, -20%); + z-index: 5; +} +/* Position text in the middle of the page/image */ +.bg-text { + background-color: #000000; + /* Fallback color */ + background-color: #00000096; + /* Black w/opacity/see-through */ + color: #ffffff; + font-weight: bold; + border: 3px solid #ffffff; + position: absolute; + top: 30%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 2; + width: 70%; + padding: 20px; + text-align: center; +} + +h1 { + font-size: 50px; +} \ No newline at end of file diff --git a/Project01/Project01.html b/Project01/Project01.html new file mode 100644 index 0000000..11cf615 --- /dev/null +++ b/Project01/Project01.html @@ -0,0 +1,36 @@ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+
+ +
+

What is your favorite car brand?

+

Qual é a sua marca de carro favorita?

+
+ +