Playing with mix-blend-mode, border-radius, and box-shadows.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const ArtSpinner = ({ name }: { name?: string }): React.JSX.Element => { | |
const classes = { | |
element: joinArray([ | |
'art-spinner', | |
name && `art-${name}--spinner`, | |
]), | |
circle: joinArray([ | |
'art-spinner--circle', | |
name && `art-${name}--spinner-circle`, | |
]), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom-workspace-axis.vertical atom-pane { | |
flex-direction: row; | |
.tab-bar:not(:empty) { | |
box-shadow: inset -1px 0 0 #181a1f; | |
resize: horizontal; | |
height: auto; | |
display: block; | |
padding-right: 1px; | |
padding-bottom: 3em; | |
min-width: 14em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ellipsis { | |
overflow: hidden; | |
white-space: nowrap; | |
text-overflow: ellipsis; | |
} |
CSS Animated Hamburger (Menu Icon) with Transforms using a Single Child Element.
Forked from Elijah Manor's Pen CSS Animated Hamburger Icon.
A Pen by Jase Smith on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "project-palette-finder", | |
"main": "./lib/project-palette-finder", | |
"version": "2.4.1", | |
"description": "Finds and archive colors defined in a project's less/sass/stylus files", | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/abe33/atom-project-palette-finder" | |
}, | |
"license": "MIT", |
Allow Atom's file tabs to be as big as they need to be to show the full filename text; aka: no tab ellipses (...)
Fixed size tiles inside flexbox cells while maintaining tile alignment by inserting extra :empty ghost tiles (dirty technique, extraneous DOM elements) — known issue: if there's not enough real tiles to fill the first flex row then the ghost tiles have a presence.
Forked from Kristian Dalgård's Pen Flexbox inner border and column alignment.
A Pen by Jase Smith on CodePen.