View Single Post
Old 09-18-2020, 01:35 PM   #13
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,368
Karma: 20212733
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
I was playing around with this in Sigil and was able to change the equation size by changing the height of the image using css. I couldn't get the color of the stroke to change using the class because it is defined in the .svg file itself using the <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> tags at the bottom. You would need to change those individually (or with a regex). eg to make them all green replace rgb(0,0,0) with rgb(0,255,0), or black:rgb(0,0,0)

You might be able to increase the size by using CSS:
.fs img {height: 1.2em}

The light grey color you see may?? be caused by the '%' in the rgb(0%,0%,0%)...your reader may be hanging up on that...I'm certainly not an expert on SVG, but I haven't seen rgb described with percentages before...I just use a given value from 0-255.
Attached Thumbnails
Click image for larger version

Name:	Screenshot 2020-09-18 132259.png
Views:	205
Size:	104.5 KB
ID:	182017  

Last edited by Turtle91; 09-18-2020 at 01:40 PM. Reason: clarification
Turtle91 is offline   Reply With Quote