From 552172f3302894ebfa4d995922f2f8318bf1be13 Mon Sep 17 00:00:00 2001 From: Gabe Date: Thu, 30 Oct 2025 19:23:32 +0000 Subject: [PATCH] Add Flame Dashboard/flame.css --- Flame Dashboard/flame.css | 99 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 Flame Dashboard/flame.css diff --git a/Flame Dashboard/flame.css b/Flame Dashboard/flame.css new file mode 100644 index 0000000..0bb2750 --- /dev/null +++ b/Flame Dashboard/flame.css @@ -0,0 +1,99 @@ +/* Hide Application URLs */ +.AppCard_AppCardDetails__HgNoY { + height: 55%; +} + +.AppCard_AppCardDetails__HgNoY span { + display: none !important; + font-size: 12px !important; +} + + +/* Settings button style */ +.Home_SettingsButton__Qvn8C { + border-radius: 0.5rem !important; + background-color: #DFD9D6 !important; +} + + +/* Wide Application tiles */ +.AppCard_AppCard__1V2_0 { + padding: 15px !important; + margin-bottom: 0 !important; + border-radius: 0.7rem !important; +} + + +/* Application tile hover color */ +.AppCard_AppCard__1V2_0:hover { + background-color: rgba(0, 0, 0, 0.3) !important; +} + +@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) { + .AppCard_AppCard__1V2_0:hover { + backdrop-filter: blur(15px); + background-color: rgba(0, 0, 0, 0.3) !important; + } +} + + +/* Background image */ +body { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + height: 100%; +} + +body:before { + content: ""; + position: fixed; + overflow: hidden; + background-image: Url("https://wallpaperaccess.com/full/1286235.jpg"); + background-size: cover; + z-index: -999; + height: 100%; + width: 100%; + transform: scale(1.1); + + /* Change the following only: */ + filter: blur(0.2rem); + opacity: 0.6; +} + + +/* Truncate Title and URL */ +.AppCard_AppCardIcon__8ZZTq { + min-width: 35px; +} + +.AppCard_AppCard__1V2_0 { + min-width: 0 +} + +.AppCard_AppCardDetails__HgNoY { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; +} + +.AppGrid_AppGrid__ZxiaC { + grid-template-columns: repeat(7, 1fr) !important; +} + +:root { + --name-search: "Search"; +} + +#root > div:first-child > div:first-child { + display: flex; +} +#root > div:first-child > div:first-child::before { + content: var(--name-search) ':'; + margin-bottom: 3px; + margin-right:0.20rem; + padding: 20px 0; + color: var(--color-accent); +} \ No newline at end of file