swifter icon indicating copy to clipboard operation
swifter copied to clipboard

CSS / style in header

Open MattTimmons opened this issue 4 years ago • 1 comments

Would someone be able to provide a sample of using css styling with Swifter? I have not had luck getting it to work...

            html {
                head {
                    style {
                        bgcolor = "#b51f6a;"
                        background = "#b51f6a;"
                        color = "#b51f6a;"
                    }
                }

Or better yet, an example of using in css file as part of the app resources.

Thanks!

MattTimmons avatar Oct 28 '21 19:10 MattTimmons

I used this:

style {
    inner = """

body {
    color: pink;
    background-color: red;
}

h1 {
   font-family: "MS Comic Sans";
   font-size: 100px;
}

"""
}

You can also move that into a separate String variable to use it in different page contexts.

-ch

chockenberry avatar Apr 20 '22 21:04 chockenberry