Home > Blockchain >  Find the specific part of code used to draw a background line
Find the specific part of code used to draw a background line

Time:07-02

I'm trying to edit the Creative Common's released Darker lines in the background

Yet I can't find the proper description in the css and, when I visualize it with Chrome Inspector, I can't find the related stylesheet part. Is there a better method? Thanks

CodePudding user response:

Look at #wrapper::before. It has an inline background svg image defined in the background-image rule. See main.css:3224.

  • Related