martino
52a935a235
Ho allineato il branch vivigubbio con main in quanto su due pc differenti ho sincronizzato su branch differenti. Applicare delle restrizioni sul branch main e lavorare sul ramo vivigubbio
52 lines
680 B
CSS
52 lines
680 B
CSS
/* CSS base del progetto "Vivi", iniziato in data 07 Settembre 2024 */
|
|
|
|
body {
|
|
margin: 20px;
|
|
}
|
|
|
|
/* barra di navigazione principale */
|
|
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;
|
|
}
|
|
|
|
/* 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;
|
|
} |