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

73 lines
975 B
SCSS
Raw Normal View History

2021-11-18 14:57:07 +01:00
app-header {
background: $primary_color;
color: $white;
}
.big-header {
2022-02-08 14:04:09 +01:00
border-bottom: solid 1px #ccc !important;
2021-11-18 14:57:07 +01:00
.container {
box-shadow: none;
2022-02-08 14:04:09 +01:00
padding-bottom: 0;
2021-11-18 14:57:07 +01:00
}
}
2020-04-21 10:50:26 +02:00
nav {
a {
&::before {
display: inline-block;
position: relative;
width: auto;
background: none;
}
&::after {
display: none;
}
}
}
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: '';
}
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-09 15:27:36 +01:00
box-sizing: border-box;
2021-12-01 18:22:21 +01:00
bottom: 0;
z-index: 9;
2021-12-08 18:20:05 +01:00
height: auto;
2021-12-01 18:22:21 +01:00
background: $white;
2021-12-09 15:27:36 +01:00
width: 100%;
2021-12-09 15:06:55 +01:00
position: fixed;
right: 0;
left: 0;
2022-02-15 14:48:50 +01:00
padding: 10px;
2021-12-09 15:06:55 +01:00
2021-12-01 18:22:21 +01:00
.button {
2021-12-09 15:06:55 +01:00
display: inline-block;
2021-12-21 16:02:25 +01:00
padding: 10px 30px;
height: auto;
2021-12-09 15:06:55 +01:00
}
.button {
&.is-secondary {
color: $secondary_color !important;
border-color: $secondary_color !important;
}
2021-12-01 18:22:21 +01:00
}
}