gitlab-org--gitlab-foss/app/assets/stylesheets/sections/nav.scss

86 lines
1.6 KiB
SCSS
Raw Normal View History

2013-04-01 19:30:48 +00:00
.main-nav {
2013-07-02 11:06:25 +00:00
background: #f5f5f5;
margin: 20px 0;
2013-06-28 20:11:27 +00:00
margin-top: 0;
padding-top: 4px;
2013-04-01 19:30:48 +00:00
border-bottom: 1px solid #E1E1E1;
ul {
margin: auto;
height: 42px;
2013-04-01 19:30:48 +00:00
overflow: hidden;
.count {
font-weight: normal;
2013-04-01 19:30:48 +00:00
display: inline-block;
height: 15px;
padding: 1px 6px;
2013-04-01 19:30:48 +00:00
height: auto;
font-size: 0.82em;
line-height: 14px;
text-align: center;
color: #777;
background: #eee;
@include border-radius(8px);
2013-04-01 19:30:48 +00:00
}
.label {
background: $hover;
text-shadow: none;
color: $style_color;
2012-06-12 11:58:44 +00:00
}
2013-04-01 19:30:48 +00:00
li {
list-style-type: none;
margin: 0;
display: table-cell;
width: 1%;
&.active {
a {
color: $style_color;
font-weight: bolder;
2013-06-28 20:33:14 +00:00
&:after {
content: '';
display: block;
position: relative;
bottom: 8px;
left: 50%;
width: 0;
height: 0;
border-color: transparent transparent #777 transparent;
border-style: solid;
border-width: 6px;
margin-left: -6px;
}
2013-04-01 19:30:48 +00:00
}
}
2012-07-02 09:15:23 +00:00
2013-06-25 10:41:49 +00:00
&:hover {
a {
color: $style_color;
}
}
2013-04-01 19:30:48 +00:00
&.home {
a {
i {
font-size: 20px;
position: relative;
top: 4px;
}
2012-07-03 17:52:48 +00:00
}
}
2012-07-02 09:15:23 +00:00
}
2013-04-01 19:30:48 +00:00
a {
display: block;
text-align: center;
font-weight: normal;
2013-06-25 10:16:08 +00:00
height: 38px;
line-height: 36px;
2013-04-01 19:30:48 +00:00
color: #777;
text-shadow: 0 1px 1px white;
padding: 0 10px;
2013-06-25 10:41:49 +00:00
text-decoration: none;
2013-06-29 05:35:52 +00:00
padding-top: 2px;
2013-04-01 19:30:48 +00:00
}
2012-07-03 17:52:48 +00:00
}
2012-06-12 11:58:44 +00:00
}