project-vivi/main/template/base.css

52 lines
680 B
CSS
Raw Normal View History

/* 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;
}