-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from lion-packages/design
Dashboard Redesign
- Loading branch information
Showing
19 changed files
with
2,800 additions
and
1,534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* ---- Backgrounds ---- */ | ||
|
||
.bg-blur-center { | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100vh; | ||
z-index: 1; | ||
background: radial-gradient(circle at top, #ff8463, transparent 70%); | ||
background-color: #111111; | ||
backdrop-filter: blur(10px); | ||
} | ||
|
||
.bg-blur-left-ellipse { | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
z-index: 1; | ||
background: radial-gradient(ellipse at left, #ff8463, transparent 50%); | ||
background-color: #111111; | ||
backdrop-filter: blur(10px); | ||
} | ||
|
||
.bg-blur-buttom-ellipse { | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
z-index: 1; | ||
background: radial-gradient(ellipse at bottom, #ff8463, transparent 65%); | ||
background-color: #111111; | ||
backdrop-filter: blur(10px); | ||
} | ||
|
||
.bg-blur-right-ellipse { | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
z-index: 1; | ||
background: radial-gradient(ellipse at right, #ff8463, transparent 45%); | ||
background-color: #111111; | ||
backdrop-filter: blur(10px); | ||
} | ||
|
||
.bg-transparent-blur { | ||
background-color: rgba(17, 17, 17, 0.6); | ||
backdrop-filter: blur(10px); | ||
-webkit-backdrop-filter: blur(10px); | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
/* ---- Styles ---- */ | ||
|
||
.active-block { | ||
border: 1px solid var(--bg-lion-orange); | ||
border-right: none; | ||
border-top-left-radius: 8px; | ||
border-bottom-left-radius: 8px; | ||
box-shadow: 0 0 11px var(--bg-lion-orange) 4d; | ||
transition-delay: 0.2s; | ||
} | ||
|
||
/* ---- Buttons ---- */ | ||
|
||
.btn-orange-custom { | ||
color: #ffffff; | ||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); | ||
position: relative; | ||
background: radial-gradient(141.42% 141.42% at 100% 0%, #ffce9d66, #ffce9d00), | ||
radial-gradient( | ||
140.35% 140.35% at 100% 94.74%, | ||
var(--bg-lion-orange), | ||
#ff846300 | ||
), | ||
radial-gradient(89.94% 89.94% at 18.42% 15.79%, #ffce9d, #ffce9d00); | ||
box-shadow: 0 1px #ffffffbf inset; | ||
} | ||
|
||
.btn-orange-custom:hover { | ||
color: #e5e5e5; | ||
background: radial-gradient(141.42% 141.42% at 100% 0%, #ffce9d66, #ffce9d00), | ||
radial-gradient( | ||
140.35% 140.35% at 100% 94.74%, | ||
var(--bg-lion-orange), | ||
#ff846300 | ||
), | ||
radial-gradient(89.94% 89.94% at 18.42% 15.79%, #ffce9d, #ffce9d00), | ||
radial-gradient(141.42% 141.42% at 100% 0%, #ffce9d66, #ffce9d00), | ||
radial-gradient( | ||
140.35% 140.35% at 100% 94.74%, | ||
var(--bg-lion-orange), | ||
#ff846300 | ||
), | ||
radial-gradient(89.94% 89.94% at 18.42% 15.79%, #ffce9d, #ffce9d00); | ||
box-shadow: 0 1px #ffffffbf inset; | ||
} | ||
|
||
.btn-white-custom { | ||
color: #ffffff; | ||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); | ||
position: relative; | ||
background: radial-gradient(141.42% 141.42% at 100% 0%, #00000066, #00000000), | ||
radial-gradient(140.35% 140.35% at 100% 94.74%, #ffffff, #ffffff00), | ||
radial-gradient(89.94% 89.94% at 18.42% 15.79%, #000000, #00000000); | ||
box-shadow: 0 1px #ffffffbf inset; | ||
} | ||
|
||
.btn-white-custom:hover { | ||
color: #e5e5e5; | ||
background: radial-gradient(141.42% 141.42% at 100% 0%, #00000066, #00000000), | ||
radial-gradient(140.35% 140.35% at 100% 94.74%, #ffffff, #ffffff00), | ||
radial-gradient(89.94% 89.94% at 18.42% 15.79%, #000000, #00000000), | ||
radial-gradient(141.42% 141.42% at 100% 0%, #00000066, #00000000), | ||
radial-gradient(140.35% 140.35% at 100% 94.74%, #ffffff, #ffffff00), | ||
radial-gradient(89.94% 89.94% at 18.42% 15.79%, #000000, #00000000); | ||
box-shadow: 0 1px #ffffffbf inset; | ||
} | ||
|
||
/* ---- Blocks ---- */ | ||
|
||
.blocks { | ||
position: relative; /* Asegúrate de que la posición sea relativa para el efecto de sombra */ | ||
transition: box-shadow 0.3s ease; /* Transición suave para la sombra */ | ||
} | ||
|
||
.blocks:hover { | ||
box-shadow: 0 0 10px var(--bg-lion-orange), 0 0 20px var(--bg-lion-orange); /* Sombra al hacer hover */ | ||
} | ||
|
||
/* Clase para la sombra inicial, que será invisible hasta el hover */ | ||
.blocks { | ||
box-shadow: 0 0 0 transparent; /* Sin sombra inicialmente */ | ||
transition: box-shadow 0.5s ease; /* Transición suave para la sombra */ | ||
} | ||
|
||
/* Para mostrar la sombra durante el hover */ | ||
.blocks:hover { | ||
box-shadow: 0 0 10px var(--bg-lion-orange), 0 0 20px var(--bg-lion-orange); /* Sombra al hacer hover */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.dropdown-menu-blur { | ||
--bs-dropdown-color: #dee2e6; | ||
--bs-dropdown-bg: rgba(17, 17, 17, 0.8); | ||
--bs-dropdown-border-color: var(--bs-border-color-translucent); | ||
--bs-dropdown-box-shadow: none; | ||
--bs-dropdown-link-color: #dee2e6; | ||
--bs-dropdown-link-hover-color: #fff; | ||
--bs-dropdown-divider-bg: var(--bs-border-color-translucent); | ||
--bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15); | ||
--bs-dropdown-link-active-color: #fff; | ||
--bs-dropdown-link-active-bg: rgba(255, 255, 255, 0.15); | ||
--bs-dropdown-link-disabled-color: #adb5bd; | ||
--bs-dropdown-header-color: #adb5bd; | ||
backdrop-filter: blur(10px); | ||
border: 1px solid rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.dropdown-menu-blur .dropdown-item { | ||
color: var(--bs-dropdown-link-color); | ||
} | ||
|
||
.dropdown-menu-blur .dropdown-item:hover { | ||
color: var(--bs-dropdown-link-hover-color); | ||
background-color: var(--bs-dropdown-link-hover-bg); | ||
} | ||
|
||
.dropdown-menu-blur .dropdown-item.active, | ||
.dropdown-menu-blur .dropdown-item:active { | ||
color: var(--bs-dropdown-link-active-color); | ||
background-color: var(--bs-dropdown-link-active-bg); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.