before messing with border image

This commit is contained in:
II-Paulus-II 2024-03-18 14:49:10 +00:00
parent fda5f22a78
commit 4e31dabaaa

View File

@ -60,9 +60,9 @@
}
.projectNotSelectedButton {
border-top: 5px white double;
border-left: 5px white double;
border-right: 5px white double;
border-top: 3px white solid;
border-left: 3px white solid;
border-right: 3px white solid;
border-top-left-radius: 15%;
border-top-right-radius: 15%;
border-bottom: 0;
@ -71,7 +71,7 @@
.projectSelectedButton {
position: relative;
border-top: 7px white solid;
border-top: 3px white solid;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom: 0;
@ -79,11 +79,11 @@
.projectSelectedButton::after, .projectSelectedButton::before {
content: '';
min-width: 100vw;
min-width: 75vw;
height: 100%;
border: 7px solid white;
border: 3px solid white;
position: absolute;
bottom: -7px;
bottom: -3px;
border-top: 0;
z-index: 0;
}
@ -93,7 +93,7 @@
-moz-border-radius: 0 0 5px 0;
-webkit-border-radius: 0 0 5px 0;
border-radius: 0 0 5px 0;
right: calc(10rem - 7px);
right: calc(10rem - 3px);
}
.projectSelectedButton::after {
@ -101,5 +101,5 @@
-moz-border-radius: 0 0 0 5px;
-webkit-border-radius: 0 0 0 5px;
border-radius: 0 0 0 5px;
left: calc(10rem - 7px);
left: calc(10rem - 3px);
}