Skip to content

Instantly share code, notes, and snippets.

View thulioph's full-sized avatar
🔥

Thulio Philipe thulioph

🔥
View GitHub Profile
@thulioph
thulioph / Emmet.sublime-settings
Last active June 17, 2023 02:19
Alterando o "lang" do ST2 para pt-BR ou qualquer outra que preferir.
// Você abre o ST2 e quando gera o html:5 ele retorna a lang diferente do pt-BR (padrão brasileiro); Vá em:
// Preferences > Package Settings > Emmet > Settings - User
{
"snippets": {
"variables":{
"lang": "pt-BR",
"locale": "pt-BR"
}
}
<h1>html5 attr autofocus</h1>
<label>Input de texto:</label>
<input type="text" placeholder="input type text">
<br />
<label>Input de e-mail:</label>
<input type="email" placeholder="input type e-mail" autofocus>
@thulioph
thulioph / A-Pen-by-Thulio-Philipe.markdown
Created August 20, 2013 23:56
A CodePen by Thulio Philipe.
@thulioph
thulioph / A-Pen-by-Thulio-Philipe.markdown
Created August 21, 2013 00:32
A CodePen by Thulio Philipe.
<section id="wrapper">
</section>
<article>
<p>Procurando no mapa:
<location id="status">checando...</span>
</p>
</article>
@thulioph
thulioph / A-Pen-by-Thulio-Philipe.markdown
Created September 2, 2013 20:45
A Pen by Thulio Philipe.
@thulioph
thulioph / Preferences.sublime-settings
Created September 4, 2013 01:09
settings-user para o sublime text 2
{
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", // esquema de cores padrão do sublime
"theme": "Nexus.sublime-theme", // Tema utilizado
"caret_style": "phase", // Alterando o estilo do cursor (“smooth”, “phase”, “blink”, “wide”, “solid”)
"font_size": 8, // tamanho da fonte
"highlight_line": true, // Highlight na linha que o cursor se encontra
"line_padding_bottom": 1, // adicionando um padding bottom na linha para melhorar a legibilidade
"line_padding_top": 1, // adicionando um padding top na linha para melhorar a legibilidade
"fade_fold_buttons": false, // deixar sempre visível a opção de show/hide code folding
"bold_folder_labels": true, // deixa as pastas do projeto em negrito na barra lateral, diferenciando as pasta dos arquivos
@thulioph
thulioph / index.html
Last active December 22, 2015 19:09
A Pen by Thulio Philipe.
<form action="#">
<div>
<label for="select-teste">Select</label>
<select name="select-teste" id="select-teste">
<option selected disabled >Esse vai ser o option padrão</option>
<option value="Opcao 1">Opção 1</option>
<option value="Opcao 2">Opção 2</option>
<option value="Opcao 3">Opção 3</option>
</select>
@thulioph
thulioph / index.html
Last active December 22, 2015 19:19
A Pen by Thulio Philipe.
<input type="password" placeholder="Digite sua senha" />