Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_34.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta charset="UTF-8" />
<meta name="author" content="Anna Bracco" />
<meta name="description" content="Template HTML" />
<meta name="keywords" content="reti, localhost, IPv4, loopback" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="refresh" content="1">

<link rel="stylesheet" href="../styles/bracco_esercizio_css_34.css">
</head>
<body>
Expand Down
62 changes: 62 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_39.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
body {
margin: 0px;
padding: 0px;
font-family: Tahoma, sans-serif ;
}
.left-box{
/* border: 1px solid black; */
width: 35%;
height: 100vh;
background-color: rgb(238, 255, 0);
float: left;
}


.left-box h1 {
margin-top: 40px;
margin-left: 40px;
max-width: 200px;
}


.left-box h4 {
margin-left: 40px;
margin-bottom: 70px;
color: rgb(78, 78, 78);
}


.right-box{
width: 65%;
height: 100vh;
float: right;
position: relative;
}


.right-box img {
width: 100%;
height: 100%;

}


.right-box .button {
position: absolute;
bottom: 4%;
left: 45%;
max-width: 430px;
/* border: 1px solid black; */
}


.button a {
margin-right: 128px;
background-color: rgb(238, 255, 0);
color: #000000;
text-align: center;
padding: 4px 40px;
text-decoration: none;
font-weight: bold;
border-radius: 20px;
}
24 changes: 24 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_39.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="anna bracco" />
<meta name="description" content="Template HTML" />
<meta name="keywords" content="localhost, loopback, name resolution," />
<link rel="stylesheet" href="bracco_esercizio_css_39.css" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>es 39</title>
</head>
<body>
<div class="left-box">
<h1>DANIELE GIOTTO</h1>
<h4>Copywriter, redattore di contenuti ed editor</h4>
</div>
<div class="right-box">
<img src="https://picsum.photos/430/250/?random=1" alt="random">
<div class="button">
<a href="#">Su di me</a>
</div>
</div>
</body>
</html>
75 changes: 75 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_40.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
html {
background-color: rgb(56, 56, 141);
}


.container {
width: 95%;
height: 90vh;
margin: auto;
margin-top: 5vh;
}


.container div {
border-radius: 50px;
margin-top: 1%;
margin-left: 1%;
background-color: aliceblue;
float: left;
}


#d_1 {
width: 19%;
height: 31%;
}


#d_2 {
width: 29%;
height: 31%;
background-color: palevioletred;
}


#d_3 {
width: 48%;
height: 31%;
background-color: palevioletred;
}


#d_4 {
width: 19%;
height: 62%;
background-color: lightblue;
}


#d_5 {
width: 29%;
height: 62%;
background-color: lightblue;
}


#d_5 div {
width: 100%;
height: 48%;
margin-left: 0%;
background-color: lightblue;
}


#d_5 div:last-child {
margin-top: 3%;
background-color: lightblue;
}


#d_6, #d_7 {
width: 23.5%;
height: 62%;
background-color: palevioletred;
}
26 changes: 26 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_40.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="anna bracco" />
<meta name="description" content="Template HTML" />
<meta name="keywords" content="localhost, loopback, name resolution," />
<link rel="stylesheet" href="bracco_esercizio_css_40.css" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>es 40</title>
</head>
<body>
<div class="container">
<div id="d_1"></div>
<div id="d_2"></div>
<div id="d_3"></div>
<div id="d_4"></div>
<div id="d_5">
<div></div>
<div></div>
</div>
<div id="d_6"></div>
<div id="d_7"></div>
</div>
</body>
</html>
25 changes: 25 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_41.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
body {
margin: 0;
padding: 0;
}

.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgb(92, 92, 92);
height: auto;
width: 666px;
padding: 20px;
border-radius: 8px;
}

.cella {
background-color: #fff;
border: 1px solid #000;
width: 200px;
height: 250px;
float: left;
margin: 10px;
}
19 changes: 19 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_41.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>es 41</title>
<link rel="stylesheet" href="bracco_esercizio_css_41.css" />
</head>
<body>
<div class="container">
<div class="cella"></div>
<div class="cella"></div>
<div class="cella"></div>
<div class="cella"></div>
<div class="cella"></div>
<div class="cella"></div>
</div>
</body>
</html>
62 changes: 62 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_42.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
body {
margin: 0;
padding: 0;
}

.container {
position: absolute;
top: 50%;
left: 50%;
background-color: lightgray;
height: auto;
width: 845px;
padding: 20px;
border-radius: 8px;
}

.box {
background-color: #fff;
width: 200px;
height: 250px;
float: left;
margin: 5px;
}

.box:nth-child(4),
.box:nth-child(5),
.box:nth-child(10) {
background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTD8E2H51ezvDMtu8PGL5wGGVEaDJxZx3g0CA&s);
background-size: cover;
background-position: center;
}

.box:nth-child(3),
.box:nth-child(8),
.box:nth-child(11) {
background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTD8E2H51ezvDMtu8PGL5wGGVEaDJxZx3g0CA&s) no-repeat;
background-size: cover;
background-position: center;
}

.box:nth-child(1),
.box:nth-child(6){
background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTD8E2H51ezvDMtu8PGL5wGGVEaDJxZx3g0CA&s);
background-size: cover;
background-position: center;
}

.box:nth-child(2){
background-color: #e2dbd0;
}

.box:nth-child(7){
background-color: #c4b499;
}

.box:nth-child(9){
background-color: #cfc7bc;
}

.box:nth-child(12){
background-color: #95775c;
}
27 changes: 27 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_42.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Esercizio CSS 42</title>
<link rel="stylesheet" href="bracco_esercizio_css_42.css">
</head>
<body>
<div class="container">
<div class="container">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</div>
</body>
</html>
19 changes: 19 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_44.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
background-color: white;
width: 800px;
padding: 10px;
}

.item {
background-color: navy;
border: 1px solid blue;
width: 60px;
padding: 10px;
text-align:center;
justify-content: space-between;
color: white;
border-radius: 20px;
}
17 changes: 17 additions & 0 deletions TPSI/bracco_anna/CSS/bracco_esercizio_css_44.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>esercizio 44</title>
<link rel="stylesheet" href="bracco_esercizio_css_44.css">
</head>
<body>
<div class="container">
<div class="item">Home</div>
<div class="item">About us</div>
<div class="item">Our products</div>
<div class="item">Contact us</div>
</div>
</body>
</html>
Loading