swifter
swifter copied to clipboard
CSS / style in header
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!
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