demarches-normaliennes/app/assets/stylesheets/new_design/_tabs.scss

52 lines
795 B
SCSS
Raw Normal View History

2017-06-29 17:43:20 +02:00
@import "colors";
@import "mixins";
.tabs {
li {
display: inline-block;
line-height: 36px;
position: relative;
text-align: center;
font-size: 14px;
border-radius: 3px 3px 0 0;
border: 1px solid transparent;
a {
display: block;
padding-left: 20px;
padding-right: 20px;
color: $black;
}
2017-06-29 17:43:20 +02:00
&.active {
background-color: #FFFFFF;
border-top: 1px solid $border-grey;
border-left: 1px solid $border-grey;
border-right: 1px solid $border-grey;
a {
color: $blue;
}
2017-08-28 10:51:40 +02:00
.badge {
color: $blue;
}
}
2017-06-29 17:43:20 +02:00
&:hover {
a {
color: $blue;
}
2017-08-28 10:51:40 +02:00
.badge {
color: $blue;
}
}
2017-08-30 15:31:17 +02:00
.notifications {
top: 3px;
right: 3px;
}
2017-06-29 17:43:20 +02:00
}
}