Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<!--[if lt IE 7 ]> <html class="ie6" lang="pt-br"> <![endif]--> | |
<!--[if IE 7 ]> <html class="ie7" lang="pt-br"> <![endif]--> | |
<!--[if IE 8 ]> <html class="ie8" lang="pt-br"> <![endif]--> | |
<!--[if IE 9 ]> <html class="ie9" lang="pt-br"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="pt-br"> <!--<![endif]--> |
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
Show hidden characters
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 12, |
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
<div class="controls"> | |
<input type="tel" id="cadastro-tel" maxlength="2" class="" placeholder="00" pattern="^([0-9]{2})$" required> | |
<input type="tel" maxlength="10" class="span2" placeholder="0000-0000" required pattern="^([9]{1})?([0-9]{4})-([0-9]{4})|^([9]{1})?([0-9]{4})([0-9]{4})$"> | |
</div> |
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
<input type="text" pattern="\d{2}.?\d{3}.?\d{3}/?\d{4}-?\d{2}|(^\d{3}\.\d{3}\.\d{3}-\d{2})|(^\d{3}\d{3}\d{3}\d{2})$" id="cadastro-cnpj" placeholder="00.000.000/0000-00" required><!-- 00.000.000/0000-00 ou 000.000.000-00 ou 00000000000 --> |
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
<input type="url" id="cadastro-site" placeholder="http://www.site.com" pattern="^(http://|https://)(www\.)?([a-zA-Z0-9]+)(\.)([a-zA-Z0-9]+)(\.[a-z]{2})?"> |
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
find . -name '*.DS_Store' -type f -delete |
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
chown www-data:www-data -R * # Let apache be owner | |
find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x | |
find . -type f -exec chmod 644 {} \; # Change file permissions rw-r--r-- |
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
<link rel="import" href="../cool-clock/cool-clock.html"> | |
<link rel="import" href="../ace-element/ace-element.html"> | |
<link rel="import" href="../notification-elements/notification-alert.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |