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

52 lines
843 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;
2021-09-20 15:04:24 +02:00
border-top: 2px solid $blue-france-500;
border-left: 1px solid $border-grey;
border-right: 1px solid $border-grey;
a {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
}
2017-08-28 10:51:40 +02:00
.badge {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
2017-08-28 10:51:40 +02:00
}
}
2017-06-29 17:43:20 +02:00
&:hover {
a {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
}
2017-08-28 10:51:40 +02:00
.badge {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
2017-08-28 10:51:40 +02:00
}
}
2017-08-30 15:31:17 +02:00
.notifications {
top: 3px;
right: 3px;
}
2017-06-29 17:43:20 +02:00
}
}