-
+
+
+
-
+
+
-
+
@@ -94,32 +116,51 @@ export default defineComponent({
width: var(--max-container-width);
}
-.stations-options {
+.stations-topbar {
display: flex;
- flex-wrap: wrap;
gap: 0.5em;
+ justify-content: space-between;
position: relative;
margin-bottom: 0.5em;
+
+ & > div {
+ display: flex;
+ gap: 0.5em;
+ }
}
-button.btn-donation {
+button.donation-button {
margin-left: auto;
-
- background-color: #254069;
+ background: #833AB4;
+ background: linear-gradient(120deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(131, 58, 180, 1) 100%);
+ transition: background 300ms;
+ background-size: 300%;
&:hover {
- background-color: #2e4f81;
- }
-
- @include responsive.smallScreen {
- span {
- display: none;
- }
+ background-size: 100%;
}
}
-.count {
- padding: 0.5em;
+a.pojazdownik-link {
+ background-color: #1f263b;
+
+ &:hover {
+ background-color: #2e3958;
+ }
+}
+
+a.gnr-link {
+ background-color: #141414;
+
+ &:hover {
+ background-color: #222222;
+ }
+}
+
+@media only screen and (max-width: 900px) {
+ .topbar-links > * > span {
+ display: none;
+ }
}