146
| <![CDATA[<button class="expand-audio" style="cursor:pointer;" aria-label="Assistente de Áudio"><i class="fas fa-assistive-listening-systems"></i></button>]]>
|
164
| <![CDATA[<div id="audima-container" class="col-12" style="display: none">
<div id="audimaWidget"></div>
</div>]]>
|
574
| <![CDATA[<span class="fa fa-chevron-right" style="margin-left: -2px;"></span>]]>
|
55
| <![CDATA[<style>
.bg-default{
background-color: #009cd6;
}
ul.menu > li {
list-style: none;
position: relative;
margin-left: -3em;
}
ul.menu > li a {
padding: 16px 25px 16px 5px;
-webkit-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
-moz-transition: all 0.35s;
-ms-transition: all 0.35s;
float: inherit;
}
ul.menu > li a:after {
content: "\f105";
content: "\f0da";
font-family: 'FontAwesome';
font-family: FontAwesome;
position: absolute;
text-decoration: inherit;
color: #009cd6;
left: 95%;
top: 25px;
margin-top: -12px;
font-size: 15px;
}
.vertical-menu a {
color: #a2a2a2; /* Black text color */
display: block; /* Make the links appear below each other */
padding: 12px; /* Add some padding */
text-decoration: none; /* Remove underline from links */
text-align: left;
border-bottom: 1px solid;
float: left;
width: 100%;
}
.vertical-menu a:hover {
background-color: #e5e5e5;
}
.vertical-menu a.active {
background-color: #009cd6;
color: white;
}
</style>]]>
|
113
| <![CDATA[<style>
.upper-page-box input, select, textarea, .select2-selection__rendered{
color: #ffffff !important;
}
</style>]]>
|
122
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116291566-1');
</script>]]>
|
710
| <![CDATA[<script>
$(document).ready(function() {
$('.expand-audio').on('click', function() {
$('#audima-container').slideToggle(250);
});
new window.VLibras.Widget('https://vlibras.gov.br/app');
Raven.config('https://350d57fe132e48a1a33a09123b861837@sentry.io/290570').install() ;
let $v_PageIsDirty = $('#page_is_dirty');
if($v_PageIsDirty.val() == 0) {
$v_PageIsDirty.val(1);
}
//loads or fetches weather data from openweathermap
let v_WeatherData = JSON.parse(localStorage.getItem('currentWeather'));
let v_Today = new Date().getTime();
//if has weather data and it's within the specified lifetime, displays it. Otherwise, fetches new data
if(v_WeatherData != null && ((v_Today - (v_WeatherData.dt * 1000)) < WEATHER_LIFETIME )){
displayWeather(v_WeatherData);
}
else {
if (v_WeatherData != null) {
localStorage.removeItem('currentWeather');
}
$.ajax({
url: 'https://api.openweathermap.org/data/2.5/weather?q=Nova+Lima,br&units=metric&lang=pt&APPID=324350afdbca18da0b2a1b71563bb3d2',
dataType: 'jsonp',
success: function (p_WeatherData) {
if (p_WeatherData != undefined && p_WeatherData.cod == 200) {
displayWeather(p_WeatherData);
localStorage.setItem('currentWeather', JSON.stringify(p_WeatherData));
}
}
});
}
});
//displays weather info
function displayWeather(p_WeatherData){
let v_Weather = p_WeatherData.main.temp;
v_Weather = Math.round(v_Weather * 10)/10;
v_Weather = (v_Weather + 'º').replace('.',',');
$('#weather').html(v_Weather);
$('#weather_img').removeClass('d-none').attr('src', 'https://novalima.mg.gov.br/assets/images/weather/' + p_WeatherData.weather[0].icon + '.png');
}
</script>]]>
|
768
| <![CDATA[<script>
$(document).ready(function(){
$('.upper-page-box select').change(function(){
$('.filter-form').submit();
});
});
function disableEmptyFilters(){
$('.filter-form :input').each(function(){
if($(this).val() === ''){
$(this).attr('disabled', true);
}
});
return true;
}
</script>]]>
|