Update style.css
Browse files
style.css
CHANGED
@@ -799,4 +799,29 @@ input[type="range"].futuristic-slider::-moz-range-thumb {
|
|
799 |
box-shadow: 0 3px 6px rgba(0,0,0,0.2),
|
800 |
inset 0 1px 2px rgba(0,0,0,0.1);
|
801 |
background-image: linear-gradient(to right bottom, rgba(41, 55, 75, 0.9), rgba(31, 45, 65, 1));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
}
|
|
|
799 |
box-shadow: 0 3px 6px rgba(0,0,0,0.2),
|
800 |
inset 0 1px 2px rgba(0,0,0,0.1);
|
801 |
background-image: linear-gradient(to right bottom, rgba(41, 55, 75, 0.9), rgba(31, 45, 65, 1));
|
802 |
+
}
|
803 |
+
|
804 |
+
/* --- Novita.AI Logo Theming --- */
|
805 |
+
.novita-logo-container {
|
806 |
+
/* Ensures the container behaves as expected for width/height of SVG */
|
807 |
+
display: inline-block; /* Or block, depending on layout needs */
|
808 |
+
line-height: 0; /* Removes extra space if SVG is display: inline-block */
|
809 |
+
}
|
810 |
+
|
811 |
+
.novita-logo-svg-themed {
|
812 |
+
/* General fill for the SVG - this might be overridden by specific fills on paths */
|
813 |
+
fill: #4CAF50; /* A standard green color */
|
814 |
+
}
|
815 |
+
|
816 |
+
/* If the above doesn't work because paths have their own fill, try targeting paths.
|
817 |
+
You might need to inspect the SVG structure to get the right selectors if it's complex.
|
818 |
+
This is a general attempt to override path fills. Use !important sparingly. */
|
819 |
+
.novita-logo-svg-themed path,
|
820 |
+
.novita-logo-svg-themed circle,
|
821 |
+
.novita-logo-svg-themed rect,
|
822 |
+
.novita-logo-svg-themed polygon,
|
823 |
+
.novita-logo-svg-themed g {
|
824 |
+
fill: #4CAF50 !important; /* Using !important to try and override inline styles if present */
|
825 |
+
/* If there are strokes you want to color too: */
|
826 |
+
/* stroke: #388E3C !important; /* A darker green for stroke */
|
827 |
}
|