Skip to content

Instantly share code, notes, and snippets.

View almeidarenato's full-sized avatar
🏠
Working from home

Renato Almeida almeidarenato

🏠
Working from home
View GitHub Profile
@almeidarenato
almeidarenato / index.html
Created July 2, 2019 00:05
Split Landing Page
<div class="container">
<div class="split left">
<h1>The Designer</h1>
<a href="#" class="button">Read More</a>
</div>
<div class="split right">
<h1>The Programmer</h1>
<a href="#" class="button">Read More</a>
</div>
</div>
@almeidarenato
almeidarenato / reset.css
Last active March 30, 2020 02:11
Simple Reset CSS
/*
* CSS Reset
*/
* {
margin:0;
border: 0;
padding:0;
box-sizing: border-box
}
- White Space
- Color
- Contrast
- Scale
- Alignment
- Typography
- Visual Hierarchy
@almeidarenato
almeidarenato / vscode_settings.json
Created July 3, 2020 02:34
vscode configs for settings.json
{
"workbench.settings.editor": "json",
"editor.cursorBlinking": "smooth",
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"editor.rulers": [
80,
@almeidarenato
almeidarenato / tsconfig.json
Created January 28, 2022 02:26
Configuração para arquivo de configurações do typescript
{
"compilerOptions": {
/* Language and Environment */
"lib": ["dom","DOM.Iterable","esnext"],
"jsx": "react-jsx", /* entender que estamos usando o react javascript */
/* Modules */
"module": "commonjs", /* Specify what module code is generated. */
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */