NDOJ/templates/timezone/media-css.html

27 lines
505 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% compress css %}
2023-01-27 23:11:10 +00:00
{% if TIMEZONE_BG %}
2020-01-21 06:35:58 +00:00
<style>
2023-01-27 23:11:10 +00:00
.map-wrap {
background: url('{{TIMEZONE_BG}}')
}
</style>
{% endif %}
<link rel="stylesheet" href="{{ static('libs/timezone-map/timezone-map.css') }}">
<style>
.map-inset {
background: url('{{TIMEZONE_MAP}}') 50% 50%
}
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
.map-wrap {
display: none
}
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
.featherlight {
z-index: 1000
}
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
.featherlight .featherlight-content {
min-width: 80%
}
</style>
2020-01-21 06:35:58 +00:00
{% endcompress %}