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

124 lines
2.3 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;
border-bottom: 1px solid #E9E9E9;
2013-04-01 19:30:48 +00:00
ul {
padding: 0;
2013-04-01 19:30:48 +00:00
margin: auto;
height: 40px;
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: $link_color;
font-weight: bold;
2013-06-28 20:33:14 +00:00
&:after {
content: '';
display: block;
position: relative;
bottom: -1px;
border-color: $link_color;
2013-06-28 20:33:14 +00:00
border-style: solid;
border-width: 2px;
2013-06-28 20:33:14 +00:00
}
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: $link_hover_color;
&:after {
content: '';
display: block;
position: relative;
bottom: -1px;
border-color: $link_hover_color;
border-style: solid;
border-width: 2px;
}
2013-06-25 10:41:49 +00:00
}
}
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: 500;
2013-06-25 10:16:08 +00:00
height: 38px;
line-height: 34px;
2013-04-01 19:30:48 +00:00
color: #777;
text-shadow: 0 1px 1px white;
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
}
@media (max-width: $screen-xs-max) {
font-size: 18px;
margin: 0;
max-height: none;
&, .container {
padding: 0;
border-top: 0;
}
ul {
height: auto;
li {
display: list-item;
width: auto;
padding: 5px 0;
&.active {
background-color: $link_hover_color;
a {
color: #fff;
font-weight: normal;
text-shadow: none;
&:after { display: none; }
}
}
}
}
}
2012-06-12 11:58:44 +00:00
}