diff --git a/index.html b/index.html new file mode 100644 index 0000000..d6fd965 --- /dev/null +++ b/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + + + + +
+ +
+
b
+ + + \ No newline at end of file diff --git a/main/template/base.css b/main/template/base.css new file mode 100644 index 0000000..0d5f4b9 --- /dev/null +++ b/main/template/base.css @@ -0,0 +1,52 @@ +/* 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; +} \ No newline at end of file