Browse Source

add breadcrumb

develop
Carmine De Rosa 8 years ago
parent
commit
de24769580
  1. 52
      css/styles.css
  2. 9
      header.php
  3. BIN
      scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/header.scssc
  4. BIN
      scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/variables.scssc
  5. 35
      scss/header.scss
  6. 9
      scss/variables.scss

52
css/styles.css

@ -14548,20 +14548,19 @@ header .hamburger {
} }
/* line 22, header.scss */ /* line 22, header.scss */
header .first { header .first {
/* display: none; */
position: relative; position: relative;
top: 70px;
height: 90px;
top: 110px;
height: 70px;
} }
/* line 30, header.scss */
/* line 29, header.scss */
header .hours { header .hours {
font-size: 0.75rem; font-size: 0.75rem;
} }
/* line 32, header.scss */
/* line 31, header.scss */
header .hours span { header .hours span {
display: block; display: block;
} }
/* line 37, header.scss */
/* line 36, header.scss */
header .topmenu { header .topmenu {
height: calc(100vh - 70px); height: calc(100vh - 70px);
position: fixed; position: fixed;
@ -14572,7 +14571,7 @@ header .topmenu {
display: none; display: none;
overflow: auto; overflow: auto;
} }
/* line 47, header.scss */
/* line 46, header.scss */
header .topmenu ul { header .topmenu ul {
text-align: center; text-align: center;
font-size: 1.125rem; font-size: 1.125rem;
@ -14582,23 +14581,56 @@ header .topmenu ul {
padding: 0; padding: 0;
line-height: 30px; line-height: 30px;
} }
/* line 57, header.scss */
/* line 56, header.scss */
header .topmenu ul li { header .topmenu ul li {
list-style: none; list-style: none;
padding: 15px; padding: 15px;
display: block; display: block;
border-top: 1px solid rgba(255, 255, 255, 0.6); border-top: 1px solid rgba(255, 255, 255, 0.6);
} }
/* line 62, header.scss */
/* line 61, header.scss */
header .topmenu ul li a { header .topmenu ul li a {
color: white; color: white;
text-decoration: none; text-decoration: none;
transition: .4s; transition: .4s;
} }
/* line 66, header.scss */
/* line 65, header.scss */
header .topmenu ul li a:hover { header .topmenu ul li a:hover {
color: rgba(255, 255, 255, 0.6); color: rgba(255, 255, 255, 0.6);
} }
/* line 73, header.scss */
header .breadcrumb {
font-size: 0.75rem;
padding: 5px;
margin: 0;
background-color: #eceeef;
border-radius: 0;
width: 100%;
position: absolute;
left: 0;
color: #aaa;
height: 30px;
}
/* line 85, header.scss */
header .breadcrumb .container {
overflow: hidden;
overflow-x: auto;
}
/* line 88, header.scss */
header .breadcrumb .container .crumbs {
height: 20px;
display: ruby;
}
/* line 91, header.scss */
header .breadcrumb .container .crumbs a {
color: #aaa;
text-decoration: none;
transition: .4s;
}
/* line 95, header.scss */
header .breadcrumb .container .crumbs a:hover {
color: #666;
}
@media only screen and (min-width: 768px) { @media only screen and (min-width: 768px) {
/* line 5, mediaqueries/viewports/_768up.scss */ /* line 5, mediaqueries/viewports/_768up.scss */

9
header.php

@ -14,7 +14,7 @@
<span>Sab 9:00-13:00</span> <span>Sab 9:00-13:00</span>
</div> </div>
</div> </div>
</div>
<div class="hamburger hamburger--spin"> <div class="hamburger hamburger--spin">
<div class="hamburger-box"> <div class="hamburger-box">
<div class="hamburger-inner"></div> <div class="hamburger-inner"></div>
@ -30,8 +30,15 @@
<li><a href="<?php echo $BASE_URLs;?>/contatti">Contatti</a></li> <li><a href="<?php echo $BASE_URLs;?>/contatti">Contatti</a></li>
</ul> </ul>
</div> </div>
</div>
</div>
<div class="breadcrumb">
<div class="container">
<div class="crumbs">
<span class="d-none d-sm-block">Ordine dei Farmacisti della Provincia di Salerno <i class="fa fa-angle-right"></i></span> <a href="">Home</a>
</div>
</div> </div>
</div> </div>

BIN
scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/header.scssc

Binary file not shown.

BIN
scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/variables.scssc

Binary file not shown.

35
scss/header.scss

@ -20,10 +20,9 @@ header{
.first{ .first{
/* display: none; */
position: relative; position: relative;
top: 70px;
height: 90px;
top: 110px;
height: 70px;
} }
@ -70,4 +69,34 @@ header{
} }
} }
} }
.breadcrumb {
font-size: $font-12;
padding: 5px;
margin: 0;
background-color: $light-grey;
border-radius: 0;
width: 100%;
position: absolute;
left: 0;
color: $grey;
height: 30px;
.container{
overflow: hidden;
overflow-x: auto;
.crumbs{
height: 20px;
display: ruby;
a{
color: $grey;
text-decoration: none;
transition: .4s;
&:hover{
color: $dark-grey;
}
}
}
}
}
} }

9
scss/variables.scss

@ -66,6 +66,9 @@ $font-53: 3.312rem; /* 53px */
} }
$alpha: rgba(255,255,255,0.6);
$green: #2e981e;//#67a562;
$red: #aa0000;
$alpha: rgba(255,255,255,0.6);
$green: #2e981e;//#67a562;
$red: #aa0000;
$grey: #aaa;
$light-grey: #eceeef;
$dark-grey: #666;

Loading…
Cancel
Save