Skip to content

Instantly share code, notes, and snippets.

View juanfernandes's full-sized avatar
💭
Available for contract / freelance work

Juan Fernandes juanfernandes

💭
Available for contract / freelance work
View GitHub Profile
@juanfernandes
juanfernandes / element-classes-and-ids.scss
Created September 11, 2020 09:15 — forked from 5t3ph/element-classes-and-ids-vanilla.css
Tag HTML elements with their class names and IDs to visualize page structure
*[class],
*[id] {
position: relative;
outline: 2px dashed red;
&::before,
&::after {
position: absolute;
top: 0;
left: 0;
@juanfernandes
juanfernandes / colorized-list-bullets.css
Created November 10, 2021 16:10 — forked from 5t3ph/colorized-list-bullets.css
3 Quick Modern CSS Examples
/*
OLD hacky way
*/
ul {
list-style: none;
padding: 0;
}
li {
position: relative;