Prove iniziali per il nuovo portale
This commit is contained in:
parent
a8266cf3da
commit
314c1c33f5
|
@ -0,0 +1,13 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title> </title>
|
||||||
|
<link href="main/template/base.css" rel="stylesheet" type="text/css" media="all" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div style="float: left; width: 500px; align-content: center; display: inline-block;">
|
||||||
|
<div class="box street">abc</div>
|
||||||
|
<div class="box phone">abc</div>
|
||||||
|
<div class="box mail">abc</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,21 @@
|
||||||
|
/* CSS di base del progetto "Vivi", iniziato in data 07 Settembre 2024 */
|
||||||
|
|
||||||
|
/* 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;
|
||||||
|
}
|
Loading…
Reference in New Issue