1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/app/views/shared/_photo_styles.html.erb
2014-03-07 13:07:53 +00:00

19 lines
590 B
Plaintext

<style type="text/css">
<% photos.each do |photo| %>
#<%= photo.name.parameterize %>.sg-<%= size %> {
background: url(<%= photo.image.send(:"size#{size}").url %>);
}
<% end %>
@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
<% photos.each do |photo| %>
#<%= photo.name.parameterize %>.sg-<%= size %> {
background: url(<%= photo.image.send(:"size#{size}x2").url %>);
background-size: 100%;
}
<% end %>
}
</style>