2024-09-08 10:43:52 +00:00
|
|
|
/* CSS base del progetto "Vivi", iniziato in data 07 Settembre 2024 */
|
2024-08-03 12:37:20 +00:00
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2024-09-08 10:43:52 +00:00
|
|
|
/* barra di navigazione principale */
|
2024-08-03 12:37:20 +00:00
|
|
|
nav {}
|
|
|
|
|
|
|
|
.icon-bar {
|
|
|
|
width: 100%;
|
|
|
|
background-color: #555;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-bar a {
|
|
|
|
float: left;
|
|
|
|
text-align: center;
|
|
|
|
width: 20%;
|
|
|
|
padding: 12px 0;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
color: white;
|
|
|
|
font-size: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-bar a:hover {
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
background-color: #04AA6D;
|
2024-09-08 10:43:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Bottoni */
|
|
|
|
.box {
|
|
|
|
width: 25%;
|
|
|
|
margin: 5px;
|
|
|
|
padding: 2%;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.street {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phone {
|
|
|
|
background-color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mail {
|
|
|
|
background-color: yellow;
|
2024-08-03 12:37:20 +00:00
|
|
|
}
|