Skip to content

Instantly share code, notes, and snippets.

@Teraskull
Last active May 14, 2025 14:42
Show Gist options
  • Save Teraskull/1e1c30923617b28f6fc0d331c1d854e9 to your computer and use it in GitHub Desktop.
Save Teraskull/1e1c30923617b28f6fc0d331c1d854e9 to your computer and use it in GitHub Desktop.
Custom CSS for Flame Dashboard.
/* Use `Onedark` theme for best results */
/* Hide Application URLs */
[class^="AppCard_AppCardDetails__"] {
height: 50%;
}
[class^="AppCard_AppCardDetails__"] span {
display: none !important;
}
/* Settings button style */
[class^="Home_SettingsButton__"] {
border-radius: 0.5rem !important;
background-color: #dfd9d6 !important;
}
/* Wide Application tiles */
[class^="AppCard_AppCard__"] {
padding: 15px !important;
margin-bottom: 0 !important;
border-radius: 0.7rem !important;
}
/* Application tile hover color */
[class^="AppCard_AppCard__"]:hover {
background-color: rgba(0, 0, 0, 0.3) !important;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
[class^="AppCard_AppCard__"]: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 */
[class^="AppCard_AppCardIcon__"] {
min-width: 35px;
}
[class^="AppCard_AppCard__"] {
min-width: 0;
}
[class^="AppCard_AppCardDetails__"] {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment