// Major nav sections
$sections = array('simeox', 'clinic', 'about', 'contact');
-$data=CubeIT_Util_Cms::getCMSDatasOfPage('home');
+$data = CubeIT_Util_Cms::getCMSDatasOfPage('home');
?>
<header class="site">
<nav class="primary">
<ul>
<?php
- foreach ($sections as $s) {
- echo '<li><a href="/#' . $s . '">' . $data[$s]['menu_title'] . '</a></li>';
+ foreach ($sections as $i => $s) {
+ echo '<li data-i="' . $i . '"><a href="/#' . $s . '">' . $data[$s]['menu_title'] . '</a></li>';
}
?>
</ul>
-nav {
- font-weight: 400;
-
- ul {
- list-style: none;
- }
- li {
- display: inline-block;
- padding-left: 0 !important;
- background: none !important;
- }
+nav {
+ font-weight: 400;
+
+ ul {
+ list-style: none;
+ }
+ li {
+ display: inline-block;
+ padding-left: 0 !important;
+ background: none !important;
+ }
}
nav.primary {
- float: right;
- margin-top: 65px;
- font-size: 18px;
- transition: all 0.3s ease;
-
- a {
- color: #3c3c3b;
-
- &:hover {
- color: #1d81c2;
- }
- }
-
- li {
- margin-left: 68px;
- }
+ float: right;
+ margin-top: 65px;
+ font-size: 18px;
+ transition: all 0.3s ease;
+
+ a {
+ color: #3c3c3b;
+
+ &:hover {
+ color: #1d81c2;
+ }
+ }
+
+ li {
+ margin-left: 68px;
+ &[data-i='0'] {
+ margin-left: 0;
+ }
+ }
}
nav.locale {
- font-size: 11px;
- font-weight: 300;
- float: right;
-
- a {
- display: inline-block;
- margin: 8px 0 0 5px;
- width: 28px;
- height: 28px;
- line-height: 28px;
- text-align: center;
- border-radius: 50%;
- background-color: #444;
- color: #999;
- text-transform: uppercase;
- display: inline-block;
-
- &:hover, &.active {
- background: #0080c8;
- color: #fff;
- }
- }
+ font-size: 11px;
+ font-weight: 300;
+ float: right;
+
+ a {
+ display: inline-block;
+ margin: 8px 0 0 5px;
+ width: 28px;
+ height: 28px;
+ line-height: 28px;
+ text-align: center;
+ border-radius: 50%;
+ background-color: #444;
+ color: #999;
+ text-transform: uppercase;
+
+ &:hover, &.active {
+ background: #0080c8;
+ color: #fff;
+ }
+ }
}
\ No newline at end of file