Mercurial > gui
changeset 30:c1f06342c81f
Add margin example
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 12 May 2012 10:07:45 -0400 |
parents | 93140c5cc972 |
children | b5432d74841a |
files | examples/css.ur |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/examples/css.ur Sat May 12 10:03:44 2012 -0400 +++ b/examples/css.ur Sat May 12 10:07:45 2012 -0400 @@ -1,7 +1,10 @@ +val param = 5 + fun main () : transaction page = return <xml><body> <div style={Style.prop1 "font-weight" "bold"}>Bold</div> <div style={Style.prop "background" (Style.valu (bless "http://adam.chlipala.net/web.png") :: Style.valu "no-repeat" :: [])}>Image</div> <div style={Style.props (("font-weight", Style.valu "bold" :: []) :: ("background", Style.valu (bless "http://adam.chlipala.net/web.png") :: Style.valu "no-repeat" :: []) :: [])}>Both</div> + <div style={Style.prop1 "margin-left" (show (2.5 * float param) ^ "em")}>Margin</div> </body></xml>