From bc15d9eae9d54ea97003c045ada59d4c60627073 Mon Sep 17 00:00:00 2001 From: danci-davide Date: Tue, 15 Apr 2025 20:22:11 +0200 Subject: [PATCH 1/6] Create danci_esercizio_css_45.css --- .../CSS/danci_esercizio_css_45.css | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 TPSI/danci_davide/CSS/danci_esercizio_css_45.css diff --git a/TPSI/danci_davide/CSS/danci_esercizio_css_45.css b/TPSI/danci_davide/CSS/danci_esercizio_css_45.css new file mode 100644 index 00000000..8d45cc8a --- /dev/null +++ b/TPSI/danci_davide/CSS/danci_esercizio_css_45.css @@ -0,0 +1,21 @@ +.container{ + display: flex; + flex-direction: row; + align-items: stretch; + justify-content: center; + width: 600px; + height: 200px; + border: 1px solid black; + padding: 15px; + border-radius: 3px; +} + +.left, .center, .right{ + padding: 10px; + background-color: #476b98; + border: 3px solid #68a7b7; + border-radius: 10px; + color: white; + width: 200px; + font-family: sans-serif; +} From 3c4be0f6bfe4509aa13019d723bf5ce10028c1a9 Mon Sep 17 00:00:00 2001 From: danci-davide Date: Tue, 15 Apr 2025 20:22:58 +0200 Subject: [PATCH 2/6] Create danci_esercizio_css_45.html --- .../danci_davide/CSS/danci_esercizio_css_45.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 TPSI/danci_davide/CSS/danci_esercizio_css_45.html diff --git a/TPSI/danci_davide/CSS/danci_esercizio_css_45.html b/TPSI/danci_davide/CSS/danci_esercizio_css_45.html new file mode 100644 index 00000000..04f86a08 --- /dev/null +++ b/TPSI/danci_davide/CSS/danci_esercizio_css_45.html @@ -0,0 +1,16 @@ + + + + + + Document + + + +
+
I am small
+
I have more content than the very small item.
+
I have lots of content.
So much content that I don't know where it is all going to go. I'm glad that CSS is pretty good at dealing with situations where we end up with more words than expected!
+
+ + From c7e20d672cad3c99a5ce85d55a3a8edffae59c24 Mon Sep 17 00:00:00 2001 From: danci-davide Date: Tue, 15 Apr 2025 20:23:30 +0200 Subject: [PATCH 3/6] Create danci_esercizio_css_46.css --- .../CSS/danci_esercizio_css_46.css | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 TPSI/danci_davide/CSS/danci_esercizio_css_46.css diff --git a/TPSI/danci_davide/CSS/danci_esercizio_css_46.css b/TPSI/danci_davide/CSS/danci_esercizio_css_46.css new file mode 100644 index 00000000..71675062 --- /dev/null +++ b/TPSI/danci_davide/CSS/danci_esercizio_css_46.css @@ -0,0 +1,21 @@ +.container{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + width: 1000px; + height: 700px; + border: 1px solid black; + padding: 15px; + border-radius: 3px; +} + +.center{ + width: 100px; + padding: 10px; + background-color: #476b98; + border: 3px solid #68a7b7; + border-radius: 10px; + color: white; + font-family: sans-serif; +} From d9bc92dab406d2a09f9340f3b57bf1136f4f7d1e Mon Sep 17 00:00:00 2001 From: danci-davide Date: Tue, 15 Apr 2025 20:24:08 +0200 Subject: [PATCH 4/6] Create danci_esercizio_css_46.html --- TPSI/danci_davide/CSS/danci_esercizio_css_46.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 TPSI/danci_davide/CSS/danci_esercizio_css_46.html diff --git a/TPSI/danci_davide/CSS/danci_esercizio_css_46.html b/TPSI/danci_davide/CSS/danci_esercizio_css_46.html new file mode 100644 index 00000000..d20cab9d --- /dev/null +++ b/TPSI/danci_davide/CSS/danci_esercizio_css_46.html @@ -0,0 +1,14 @@ + + + + + + Document + + + +
+
Center me.
+
+ + From fa683621f497f0d50694fb214f918e250a08827c Mon Sep 17 00:00:00 2001 From: danci-davide Date: Tue, 15 Apr 2025 20:24:34 +0200 Subject: [PATCH 5/6] Create danci_esercizio_css_47.css --- .../CSS/danci_esercizio_css_47.css | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 TPSI/danci_davide/CSS/danci_esercizio_css_47.css diff --git a/TPSI/danci_davide/CSS/danci_esercizio_css_47.css b/TPSI/danci_davide/CSS/danci_esercizio_css_47.css new file mode 100644 index 00000000..3c84f0a7 --- /dev/null +++ b/TPSI/danci_davide/CSS/danci_esercizio_css_47.css @@ -0,0 +1,22 @@ +.container{ + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; + align-content: space-between; + width: 330px; + height: 200px; + border: 1px solid black; + padding: 15px; + border-radius: 3px; +} + +.box{ + padding: 10px; + background-color: #476b98; + border: 3px solid #68a7b7; + border-radius: 10px; + color: white; + font-family: sans-serif; +} From 0ccf543c8aca07980f0e18011a745925ea387036 Mon Sep 17 00:00:00 2001 From: danci-davide Date: Tue, 15 Apr 2025 20:25:09 +0200 Subject: [PATCH 6/6] Create danci_esercizio_css_47.html --- .../CSS/danci_esercizio_css_47.html | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 TPSI/danci_davide/CSS/danci_esercizio_css_47.html diff --git a/TPSI/danci_davide/CSS/danci_esercizio_css_47.html b/TPSI/danci_davide/CSS/danci_esercizio_css_47.html new file mode 100644 index 00000000..3c61898e --- /dev/null +++ b/TPSI/danci_davide/CSS/danci_esercizio_css_47.html @@ -0,0 +1,23 @@ + + + + + + Document + + + +
+
Turnip
+
greens
+
yarrow
+
riceban
+
rutabaga
+
endive
+
cauliflower
+
sea lettuce
+
kohlrabi
+
amaranth
+
+ +