Inserts size of standanard "gap" from left edge (.3em).
Example of using the macro:
p { color: @cssDarkTone(); margin-top: @cssTopMargin(); border-top-width: 0px; padding-top: 0em; height: auto; padding-bottom: 0em; border-bottom-width: 0px; margin-bottom: @cssBottomMargin(); margin-left: @cssLeftMargin(); border-left-width: 0px; padding-left: 0em; width: auto; padding-right: 0em; border-right-width: 0px; margin-right: @cssRightMargin(); }
Assuming the com.ccg.macros.at.All
class is within your CLASSPATH
and the
config/html.at
macros file has been
generated (Hint: run make atmacros in the
wui
directory), a developer should be able to
run the above example by copy/pasting from below:
[root@probe root]#
java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")
p { color: @cssDarkTone(); margin-top: @cssTopMargin(); border-top-width: 0px; padding-top: 0em; height: auto; padding-bottom: 0em; border-bottom-width: 0px; margin-bottom: @cssBottomMargin(); margin-left: @cssLeftMargin(); border-left-width: 0px; padding-left: 0em; width: auto; padding-right: 0em; border-right-width: 0px; margin-right: @cssRightMargin(); }
EOF
This macro is defined as:
.3em