open-consul/ui/styles/_nav.scss

48 lines
909 B
SCSS
Raw Normal View History

2014-04-22 18:11:54 +00:00
.top-brand {
margin-top: 20px;
2014-04-30 18:02:20 +00:00
background: transparent url('consul-logo.png') 0 no-repeat;
2014-04-22 18:11:54 +00:00
background-size: 30px 30px;
width: 30px;
height: 30px;
}
.topbar {
padding: 30px;
2014-06-04 20:37:18 +00:00
padding-top: 10px;
padding-bottom: 10px;
margin-bottom: 20px;
2014-06-04 20:37:18 +00:00
min-height: 95px;
border-bottom: 1px #eee solid;
2014-04-22 18:11:54 +00:00
.btn {
margin-top: 20px;
min-width: 140px;
2014-04-22 18:11:54 +00:00
}
.btn-dropdown {
width: auto;
}
2014-04-25 20:24:36 +00:00
ul.dropdown-menu {
li {
a {
text-transform: uppercase;
font-weight: 600;
font-size: 12px;
color: $gray;
@include transition(background-color .1s ease-in-out);
&:hover {
color: darken($gray, 10%);
background-color: lighten($gray-background, 5%);
}
}
}
}
2014-04-22 18:11:54 +00:00
}