habitica/website/raw_sprites/css/css.template.handlebars

16 lines
474 B
Handlebars
Raw Permalink Normal View History

2015-10-08 22:30:00 +00:00
{{#sprites}}
.{{name}} {
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/{{{name}}}.png');
width: {{px.width}};
height: {{px.height}};
}
2015-10-08 22:30:00 +00:00
{{#if custom}}
.customize-option.{{name}} {
background-position: {{custom.px.offsetX}} {{custom.px.offsetY}};
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/{{{name}}}.png');
width: {{custom.px.width}};
height: {{custom.px.height}};
}
2015-10-08 22:30:00 +00:00
{{/if}}
{{/sprites}}