A new userstyle
app.mediafire.com/g3dcbb6jt5u4q by Ekenecharles
Details
AuthorEkenecharles
LicenseNo License
Category1
Created
Updated
Size2.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name app.mediafire.com/g3dcbb6jt5u4q
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("mediafire.com") {
/* Background color similar to Windows File Explorer */
body {
background-color: #f3f3f3 !important;
font-family: "Segoe UI", sans-serif !important;
}
/* File list styling */
.file_list, .file_row {
background: white !important;
border-radius: 4px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
margin-bottom: 5px;
}
/* Table-style file layout */
.file_row {
display: flex !important;
align-items: center !important;
padding: 8px !important;
border: 1px solid #ccc !important;
}
/* Change file icons to look like Windows */
.file_icon {
width: 24px !important;
height: 24px !important;
background-size: contain !important;
}
/* Header Bar (like Windows Explorer) */
.header {
background-color: #0078D7 !important;
color: white !important;
padding: 8px !important;
border-radius: 4px 4px 0 0;
font-size: 16px !important;
}
/* Sidebar (if applicable) */
.sidebar {
background-color: #e6e6e6 !important;
padding: 10px !important;
border-right: 1px solid #ccc !important;
}
/* Hover effects for rows */
.file_row:hover {
background-color: #e1efff !important;
border-color: #0078D7 !important;
}
/* Buttons (Download, Share, etc.) */
.button {
background-color: #0078D7 !important;
color: white !important;
padding: 5px 10px !important;
border-radius: 3px !important;
font-weight: bold !important;
}
.button:hover {
background-color: #005a9e !important;
}
}