Skip to content

Instantly share code, notes, and snippets.

View KempoGit's full-sized avatar
👾
I may be slow to respond.

Gastón KempoGit

👾
I may be slow to respond.
View GitHub Profile
@KempoGit
KempoGit / box_shadow.css
Created March 15, 2023 22:16
How to shadow CSS
shadow {
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
@KempoGit
KempoGit / center.css
Created March 14, 2023 21:43
How to center a DIV
div {
display: flex;
justify-content: center;
align-items: center;
}