A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
Use $$
if your browser aliases it:
~ 108 byte version
" --------------------------------------------- | |
" Appearance Settings | |
" --------------------------------------------- | |
" Don't check compatibility | |
set nocompatible | |
" Enable syntax highlighting | |
syntax on |
alias c="clear" | |
alias ~="cd ~" | |
alias ..="cd .." | |
alias ls="ls -a" | |
alias bashreload="source $HOME/.bashrc" |
node_modules/ | |
.DS_Store |
/**************************\ | |
Basic Modal Styles | |
\**************************/ | |
.modal { | |
font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif; | |
} | |
.modal__overlay { | |
position: fixed; |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$breakpoints: ( | |
small : 570px, | |
medium: 800px, | |
large : 1030px | |
); |
/** | |
* The path to the fonts folder, relative to the | |
* compiled stylesheet | |
* | |
* @type String | |
*/ | |
$font-path: "../fonts/" !default; | |
/** |
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// Prefixing mixin | |
// ---------- | |
// @param [map] $map: property/value pairs to be prefixed | |
// @param [list] $vendors: vendor prefixes to use | |
// ---------- |