darkstone-notes-pro / style.css
Wazv0's picture
make the background stone dark 900
da4e478 verified
/* Custom CSS for NotteClone Pro */
/* Custom scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #111827;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, #f59e0b, #84cc16);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, #d97706, #65a30d);
}
/* Selection color */
::selection {
background-color: rgba(245, 158, 11, 0.3);
color: #fef3c7;
}
/* Smooth focus outline */
*:focus {
outline: 2px solid rgba(245, 158, 11, 0.5);
outline-offset: 2px;
}
/* Improve font rendering */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Custom animations */
@keyframes shimmer {
0% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}
.shimmer-text {
background: linear-gradient(90deg, #f59e0b 0%, #84cc16 25%, #f59e0b 50%, #84cc16 75%, #f59e0b 100%);
background-size: 1000px 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
animation: shimmer 3s infinite linear;
}
/* Gradient borders */
.gradient-border {
border: double 2px transparent;
background-image: linear-gradient(#111827, #111827),
linear-gradient(90deg, #f59e0b, #84cc16);
background-origin: border-box;
background-clip: padding-box, border-box;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero-text {
font-size: 2.5rem;
}
.feature-card {
padding: 1.5rem;
}
}
/* Print styles */
@media print {
.no-print {
display: none;
}
}