create two version old and new

This commit is contained in:
Hugo LAMY
2022-03-26 18:56:28 +01:00
parent e10fc7ce33
commit 3d938681a0
575 changed files with 10766 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
/*---------------------------------------------*/
/*NAVBAR special DROPDOWN*/
.navbar .nav_right .dropdown .drop {
background-color: var(--color-back-base);
}
.navbar .nav_right .dropdown a:hover, .navbar .nav_right .dropdown a:focus {
background-color: var(--color-back-dark);
}
.navbar .nav_right .dropdown .drop_items {
top: 100%;
left: 0px;
height: 100%;
flex-direction: column;
display: none;
}
.navbar .nav_right .dropdown .drop_items::before {
display: none;
}
.navbar .nav_right .dropdown:focus-within * {
display: flex;
}