To style assets in Siteleaf you can use asset metadata. For example, you can create a meta field called css_class
on your asset.
Now in your theme code you can write:
{% for asset in assets %}
<img src="{{asset.url}}" class="{{asset.meta.css_class}}">
{% endfor %}