This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var jshint = require('gulp-jshint'); | |
var concat = require('gulp-concat'); | |
var rename = require('gulp-rename'); | |
var rimraf = require('gulp-rimraf'); | |
var css = []; | |
css.push(''); | |
var libJS = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<article> <p style="text-align: center;"> </p> <p>A abertura da reunião foi feita pelo representante da Corregedoria Geral da Administração (CGA), Renê Fernando Cardoso - responsável pelo departamento de Auditoria Geral e Análise de Prestação de Contas e Diárias do órgão -, o qual informou que estes encontros têm caráter participativo. “Tenho atuado em vários órgãos para ajudá-los na implantação do controle interno - sendo que alguns já se adequaram à estrutura -, conforme determina a legislação vigente”. Disse ainda que pretende convidar representantes do governo federal e da União, neste ano, para trocarem experiências e informações nestes encontros.</p> <p>O Conselho de Defesa de Capitais do Estado (Codec), representado por Guilherme Tambellini, secretário executivo do órgão, disse que está sendo alterado o estatuto das empresas. “Todas as organizações vão contar com uma área para cuidar de conformidade, gestão de risco e controle interno” e, disse ainda, que "a Sabesp sendo pioneira no controle i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function copyData(srcFile, cssImport) { | |
let cssImports; | |
fs.readFile(srcFile, 'utf8', function (err, data) { | |
if (err) throw err; | |
cssImports = ` | |
${data}; \n | |
@import ${csssImport}; | |
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#-- | |
Application display templates can be used to modify the look of a | |
specific application. | |
Please use the left panel to quickly add commonly used variables. | |
Autocomplete is also available and can be invoked by typing "${". | |
--> | |
<#if entries?has_content> | |
<article class="molecule--carrosel_focus"> | |
<ul class="molecule--carrosel_bxslider"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
const gulp = require('gulp'), | |
notify = require("gulp-notify"), | |
uglify = require('gulp-uglify'), | |
concat = require('gulp-concat'); | |
let config = { | |
jsPath: './js/modules', | |
jsCompressPath: './js/build/compress', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process.on("uncaughtException", function(err) { | |
console.log(err) | |
console.log('#################### DEU ERRO !! ############################'); | |
console.log('#################### REINICIANDO O CRAWLER...'); | |
pagesToExport.selenium.driver.quit(); | |
initCrawler(); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
findElement(locator, ...expectations){ | |
let instance = this; | |
let driver = instance.driver; | |
return new Promise(resolve => { | |
instance.getElementForConditions(locator, expectations, true).then(element =>{ | |
resolve(element); | |
}); | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes scaleBounce { | |
100% { | |
transform: scale(1); | |
opacity: 0.3; | |
background: transparent; | |
box-shadow: 0 0 20px 103px transparent; | |
} | |
} | |
@keyframes showText { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:after { | |
content: ""; | |
width: 30px; | |
background: #2eff2e; | |
height: 30px; | |
position: absolute; | |
top: 0px; | |
left: 200px; | |
border-radius: 100%; | |
transform-origin: center center; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p { | |
padding-left: 2rem; | |
font-size:10rem; | |
text-shadow: 0 0 221px transparent; | |
animation: showText 1s 1.5s 1 forwards ease-out; | |
font-family: 'Satisfy', cursive; | |
position: relative; | |
} | |
@keyframes showText { |