22 changed files with 666 additions and 69 deletions
@ -0,0 +1,6 @@ |
|||||
|
|
||||
|
<div class="col-12 col-sm-9 col-md-8"> |
||||
|
<?php |
||||
|
@include $getQ[0].'.php'; |
||||
|
?> |
||||
|
</div> |
@ -0,0 +1,10 @@ |
|||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-12 col-sm-6 col-md-4 border"> |
||||
|
<div id="map"></div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-12 col-sm-6 col-md-8 border"> |
||||
|
a |
||||
|
</div> |
||||
|
</div> |
@ -0,0 +1,57 @@ |
|||||
|
|
||||
|
<div class="col-12 col-sm-3 col-md-2 p-0"> |
||||
|
|
||||
|
<div class="dropdown active"> |
||||
|
<div class="title">Area Riservata</div> |
||||
|
<ul class="items"> |
||||
|
<li> |
||||
|
<form method="post"> |
||||
|
<label class="font-10">Username</label> |
||||
|
<input type="text" name="usr" placeholder="username"> |
||||
|
|
||||
|
<label class="font-10">Password</label> |
||||
|
<input type="password" name="pwd" placeholder="password"> |
||||
|
<input type="submit" name="go" value="Accedi"> |
||||
|
</form> |
||||
|
</li> |
||||
|
<li><a href="#">Richiedi dati di accesso</a></li> |
||||
|
<li><a href="#">Recupera password</a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown"> |
||||
|
<div class="title">Area pubblica</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="#">Modulistica </a></li> |
||||
|
<li><a href="#">Ricette e timbri</a></li> |
||||
|
<li><a href="#">Farmaci ritirati</a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown"> |
||||
|
<div class="title">Links utili</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="#">Cerca un Farmaco</a></li> |
||||
|
<li><a href="#">Siti istituzionali</a></li> |
||||
|
<li><a href="#">Siti informativi</a></li> |
||||
|
<li><a href="#">Farmaci</a></li> |
||||
|
<li><a href="#">A.S.L. della Provincia</a></li> |
||||
|
<li><a href="#">Consulenze</a></li> |
||||
|
<li><a href="#">Attività convenzionate</a></li> |
||||
|
<li><a href="#">Bilanci dell'Ordine</a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown"> |
||||
|
<div class="title">Contatti</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="#">Presidenza</a></li> |
||||
|
<li><a href="#">Vice Presidenza</a></li> |
||||
|
<li><a href="#">Segreteria</a></li> |
||||
|
<li><a href="#">Tesoreria</a></li> |
||||
|
<li><a href="#">Consiglio</a></li> |
||||
|
<li><a href="#">Webmaster</a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
@ -0,0 +1,11 @@ |
|||||
|
|
||||
|
<div class="col-12 col-sm-12 col-md-2 p-0"> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
<div class="col-12 col-sm-3 col-md-12 banner"></div> |
||||
|
</div> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,71 @@ |
|||||
|
|
||||
|
|
||||
|
input,button{ |
||||
|
border-radius: 3px; |
||||
|
margin: 5px 0; |
||||
|
-webkit-appearance: none; |
||||
|
&::-ms-clear { |
||||
|
display: none; |
||||
|
} |
||||
|
&:focus {outline:none;} |
||||
|
&::-moz-focus-inner {border:0;} |
||||
|
} |
||||
|
|
||||
|
input[type=text], |
||||
|
input[type=password]{ |
||||
|
border: 1px solid $grey; |
||||
|
color: $grey; |
||||
|
padding: 5px 20px; |
||||
|
width: 100%; |
||||
|
text-align: left; |
||||
|
box-sizing: border-box; |
||||
|
} |
||||
|
|
||||
|
input[type=button], |
||||
|
input[type=submit], |
||||
|
button{ |
||||
|
|
||||
|
background-color: $green; |
||||
|
color: white; |
||||
|
text-align: center; |
||||
|
padding: 5px 20px; |
||||
|
font-size: $font-12; |
||||
|
cursor: pointer; |
||||
|
border: none; |
||||
|
transition: .5s; |
||||
|
|
||||
|
&:hover{ |
||||
|
color: white; |
||||
|
background-color: $grey; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
input[type="radio"], |
||||
|
input[type="checkbox"]{ |
||||
|
display: none; |
||||
|
|
||||
|
&+label::before { |
||||
|
content: ""; |
||||
|
display: inline-block; |
||||
|
width: 12px; |
||||
|
height: 12px; |
||||
|
border: solid 1px black; |
||||
|
background: transparent; |
||||
|
cursor: pointer; |
||||
|
vertical-align: middle; |
||||
|
margin: -4px 4px 0 0; |
||||
|
font-size: 1rem; |
||||
|
line-height: 10px; |
||||
|
} |
||||
|
|
||||
|
&:checked{ |
||||
|
&+label::before{ |
||||
|
font-family: 'FontAwesome'; |
||||
|
content: "\f00c"; |
||||
|
padding: 0 0 1px 0; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,84 @@ |
|||||
|
|
||||
|
|
||||
|
.dropdown{ |
||||
|
border-top: 3px solid $light-green; |
||||
|
border-bottom: 3px solid $light-green; |
||||
|
border-radius: 3px; |
||||
|
margin-bottom: 4px; |
||||
|
background: $light-grey; |
||||
|
transition: .4s; |
||||
|
|
||||
|
.title{ |
||||
|
font-size: $font-12; |
||||
|
font-weight: bold; |
||||
|
text-align: left; |
||||
|
padding: 10px; |
||||
|
position: relative; |
||||
|
cursor: pointer; |
||||
|
background: $light-green; |
||||
|
color: white; |
||||
|
transition: .4s; |
||||
|
|
||||
|
&:after{ |
||||
|
content: '\f105'; |
||||
|
font-family: 'FontAwesome'; |
||||
|
position: absolute; |
||||
|
right: 10px; |
||||
|
transition: .4s; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
||||
|
&:hover{ |
||||
|
border-top: 3px solid $green; |
||||
|
border-bottom: 3px solid $green; |
||||
|
.title{ |
||||
|
background: $green; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.items{ |
||||
|
overflow: hidden; |
||||
|
height: 0px; |
||||
|
padding: 0 10px; |
||||
|
margin: 0; |
||||
|
|
||||
|
li{ |
||||
|
font-size: $font-12; |
||||
|
text-align: left; |
||||
|
border-bottom: 1px solid $grey; |
||||
|
padding: 10px 0; |
||||
|
list-style: none; |
||||
|
|
||||
|
a{ |
||||
|
color: $dark-grey; |
||||
|
text-decoration: none; |
||||
|
transition: .4s; |
||||
|
cursor: pointer; |
||||
|
&:hover{ |
||||
|
color: $grey; |
||||
|
} |
||||
|
} |
||||
|
&:last-child{ |
||||
|
border-bottom: none; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
||||
|
&.active{ |
||||
|
border-top: 3px solid $green; |
||||
|
border-bottom: 3px solid $green; |
||||
|
|
||||
|
.title{ |
||||
|
background: $green; |
||||
|
&:after{ |
||||
|
transform: rotate(90deg); |
||||
|
} |
||||
|
} |
||||
|
.items{ |
||||
|
height: auto; |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue