From 681822d9a15665cd183eda3bd2d78e8898bb868c Mon Sep 17 00:00:00 2001 From: Tamaddon-Sam Date: Wed, 16 Apr 2025 08:46:47 +0200 Subject: [PATCH 1/3] tamaddon_esercizio_css_44.css --- .../CSS/tamaddon_esercizio_css_44.css | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.css diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.css new file mode 100644 index 00000000..95bf6ffe --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.css @@ -0,0 +1,23 @@ +.container { + position: absolute; + left: 50%; + top: 10%; + transform: translate(-50%, -50%); + display: flex; + width: 50%; + padding: 5px; + border: #5e5e5e solid 1px; + border-radius: 2px; + display: flex; + flex-direction: row; + justify-content: space-between; +} + +.element { + background-color: #476b98; + border: 1px #6dabba solid; + border-radius: 10px; + padding: 10px; + color: #fff; + font-size: large; +} From f6d05cf47df9e1f43761a7134f8db077e3b9ddd8 Mon Sep 17 00:00:00 2001 From: Tamaddon-Sam Date: Wed, 16 Apr 2025 08:49:34 +0200 Subject: [PATCH 2/3] esercizi --- .../CSS/tamaddon_esercizio_css_44.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.html diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.html new file mode 100644 index 00000000..aec04007 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_44.html @@ -0,0 +1,17 @@ + + + + + + + es 44 + + +
+ + + + +
+ + From 461857d508514ae8e1895a501468353ae31ed5df Mon Sep 17 00:00:00 2001 From: Tamaddon-Sam Date: Wed, 7 May 2025 05:59:27 +0200 Subject: [PATCH 3/3] esericizi --- .../CSS/tamaddon_esercizio_css_49.css | 20 +++++++++++++ .../CSS/tamaddon_esercizio_css_49.html | 30 +++++++++++++++++++ .../CSS/tamaddon_esercizio_css_50.css | 12 ++++++++ .../CSS/tamaddon_esercizio_css_50.html | 15 ++++++++++ .../CSS/tamaddon_esercizio_css_51.css | 22 ++++++++++++++ .../CSS/tamaddon_esercizio_css_51.html | 17 +++++++++++ .../CSS/tamaddon_esercizio_css_52.css | 26 ++++++++++++++++ .../CSS/tamaddon_esercizio_css_52.html | 18 +++++++++++ .../CSS/tamaddon_esercizio_css_53.css | 26 ++++++++++++++++ .../CSS/tamaddon_esercizio_css_53.html | 18 +++++++++++ .../CSS/tamaddon_esercizio_css_54.css | 28 +++++++++++++++++ .../CSS/tamaddon_esercizio_css_54.html | 18 +++++++++++ 12 files changed, 250 insertions(+) create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.css create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.html create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.css create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.html create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.css create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.html create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.css create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.html create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.css create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.html create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.css create mode 100644 TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.html diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.css new file mode 100644 index 00000000..b13c0507 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.css @@ -0,0 +1,20 @@ +.grid-container { + display: grid; + grid-template-columns: 25% 25% 25% 25%; + border: 0px solid black; + padding: 20px; + height: 500px; + width: 500px; + justify-content: center; + justify-self: center; +} + + .grid-item { + border: 1px solid black; + text-align: center; + background-color: orange; + } + h1 + { + text-align: center; + } \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.html new file mode 100644 index 00000000..7776e90b --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_49.html @@ -0,0 +1,30 @@ + + + + + + + Gioco del 15 + + +

Gioco del 15

+
+
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
+
+ + diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.css new file mode 100644 index 00000000..4af3d84a --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.css @@ -0,0 +1,12 @@ +.grid2 div { + background: #333; + color: white; + display: flex; + justify-content: center; + } +.grid2 { + display: grid; + grid-template-columns: repeat(3, 100px); + grid-template-rows: repeat(2, 80px); + gap: 10px; + } diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.html new file mode 100644 index 00000000..f2983a1d --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_50.html @@ -0,0 +1,15 @@ +!DOCTYPE html> + + + + css_50 + + + + +
+
A
B
C
+
D
E
F
+
+ + \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.css new file mode 100644 index 00000000..0e3ad6d2 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.css @@ -0,0 +1,22 @@ +.a { + grid-column: 1 / 3; + } + .item { + background-color: #646361; + color: white; + padding: 10px; + border-radius: 6px; + align-content: center; +} + + .b { + grid-column-start: 3; + grid-row: 1 / 3; + } + .grid-container { + display: grid; + grid-template-columns: 1fr 1fr 100px; + grid-template-rows: 60px 60px; + gap: 10px; + } + \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.html new file mode 100644 index 00000000..72a57e25 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_51.html @@ -0,0 +1,17 @@ + + + + + + + es 51 + + +
+
A
+
B
+
C
+
D
+
+ + \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.css new file mode 100644 index 00000000..890280d0 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.css @@ -0,0 +1,26 @@ +.grid4 { + display: grid; + grid-template-columns: 1fr 2fr; + grid-auto-rows: 60px; + gap: 10px; + } + .grid4 div { + background: #333; + color: white; + display: flex; + justify-content: center; + align-items: center; + } + .e { grid-column: 1 / 3; } + .a { + grid-column: 1 / 3; + } + + .b { + grid-column: 3 / 5; + } + + .d { + grid-row-start: 2; + grid-column: 2 / 5; + } \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.html new file mode 100644 index 00000000..b7774292 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_52.html @@ -0,0 +1,18 @@ + + + + + + + es 52 + + +
+
A
+
B
+
C
+
D
+
E
+
+ + \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.css new file mode 100644 index 00000000..ca11794e --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.css @@ -0,0 +1,26 @@ + + .header, .footer { + grid-column: 1 / 4; + background: #999; + } + + .content { + background: #333; color: white; + } + .sidebar2 { + background: #ccc; + } + .grid5 > div { + padding: 10px; + border-radius: 5px; + } + .sidebar { + background: #333; color: white; + } + .grid5 { + display: grid; + grid-template-columns: 1fr 2fr 1fr; + grid-template-rows: auto auto auto; + gap: 10px; + background: #eee; + } \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.html new file mode 100644 index 00000000..15116f64 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_53.html @@ -0,0 +1,18 @@ + + + + + + + es 53 + + +
+
Header
+
Sidebar
+
Content
More content than we had before so this column is now quite tall.
+
Sidebar 2
+
Footer
+
+ + \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.css b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.css new file mode 100644 index 00000000..fde39d2c --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.css @@ -0,0 +1,28 @@ +#grid6 { + display: grid; + grid-template-columns: 1fr 2fr; + grid-template-rows: auto auto auto; + gap: 10px; + background: #eee; + } + .grid6 > div { + padding: 10px; + border-radius: 5px; + } + .header { + grid-column: 2 / 3; + background: #999; + } + .sidebar { + grid-row: 2 / 3; + background: #333; color: white; + } + .content { + grid-column: 2 / 3; + grid-row: 2 / 3; + background: #333; color: white; + } + .footer { + grid-column: 1 / 3; + background: #999; + } \ No newline at end of file diff --git a/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.html b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.html new file mode 100644 index 00000000..758be0f5 --- /dev/null +++ b/TPSI/tamaddon_sam/CSS/tamaddon_esercizio_css_54.html @@ -0,0 +1,18 @@ +@@ -0,0 +1,17 @@ + + + + + + + es 54 + + +
+
Header
+
Sidebar
+
Content
More content than we had before so this column is now quite tall.
+
Footer
+
+ + \ No newline at end of file