funky-framadate-front/src/styles/partials/_navigation.scss

125 lines
1.8 KiB
SCSS
Raw Normal View History

2021-11-18 14:57:07 +01:00
app-header {
background: $primary_color;
color: $white;
}
.big-header {
background: $secondary-color;
color: $white;
.container {
background: $secondary-color;
color: $white;
box-shadow: none;
}
}
// material override
.navbar {
margin-bottom: 0;
background: $secondary-color;
color: $white;
}
2020-04-21 10:50:26 +02:00
nav {
2021-11-18 14:57:07 +01:00
background: $primary-color;
2020-04-21 10:50:26 +02:00
text-align: center;
2021-11-18 14:57:07 +01:00
border-bottom: 2px solid $primary-color;
2020-04-21 10:50:26 +02:00
a {
&::before {
display: inline-block;
position: relative;
width: auto;
background: none;
}
&::after {
display: none;
}
2020-06-12 19:17:39 +02:00
&.active,
&.is-active {
2020-04-21 10:50:26 +02:00
color: $white;
2020-11-06 12:04:38 +01:00
background: $primary_color !important;
&:hover {
background: $dark !important;
}
2020-04-21 10:50:26 +02:00
}
}
}
a {
2020-06-07 13:52:14 +02:00
color: $primary_color;
2020-04-21 10:50:26 +02:00
&,
&:hover {
text-decoration: none;
}
&::before,
&::after {
content: '';
}
&.next::before,
&.prev::after {
position: absolute;
top: 0;
bottom: 0;
display: block;
width: 100%;
height: 0.6rem;
margin: auto;
background-color: $secondary_color;
z-index: -1;
}
&.next::after,
&.prev::before {
display: inline-block;
width: 1rem;
height: 1rem;
border-bottom: 2px solid #000;
}
&.next::after {
margin-right: 1rem;
border-right: 2px solid #000;
transform: rotate(-45deg);
}
&.prev::before {
margin-left: 1rem;
border-left: 2px solid #000;
transform: rotate(45deg);
}
&:hover {
&.next::before,
&.prev::after {
background-color: rgba($primary_color, 0.7);
}
}
span {
padding-right: 1rem;
padding-left: 1rem;
}
}
2020-06-12 19:17:39 +02:00
a span.ui-steps-number {
2020-06-07 13:52:14 +02:00
padding: 0;
}
2021-12-01 18:22:21 +01:00
.bottom-step-buttons {
2021-12-09 10:38:13 +01:00
box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.05);
2021-12-01 18:22:21 +01:00
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 10;
2021-12-08 18:20:05 +01:00
height: auto;
2021-12-01 18:22:21 +01:00
background: $white;
padding: 0.85rem;
.button {
width: 100%;
display: block;
}
}