Skip to content

Commit

Permalink
👷 build v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
desandro committed Nov 17, 2016
1 parent e8979cc commit f24232e
Show file tree
Hide file tree
Showing 8 changed files with 1,283 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"authors": [
"David DeSandro <[email protected]>"
],
"description": "color picker",
"description": "1-click color picker",
"main": [
"huebee.js",
"huebee.css"
Expand Down
83 changes: 83 additions & 0 deletions dist/huebee.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*! Huebee v1.0.0
http://huebee.buzz
---------------------------------------------- */

.huebee {
position: absolute;
z-index: 1;
transform: translateY(0px);
transition: opacity 0.15s, transform 0.15s;
}

.huebee.is-hidden {
opacity: 0;
transform: translateY(10px);
}

.huebee.is-static-open {
position: relative;
z-index: auto;
}

.huebee__container {
position: absolute;
left: 0;
top: 5px;
padding: 10px;
background: #EEE;
border-radius: 5px;
box-shadow: 0 5px 10px hsla(0, 0%, 0%, 0.3);
}

.huebee.is-static-open .huebee__container {
position: relative;
display: inline-block;
left: auto;
top: auto;
box-shadow: none;
}

.huebee__canvas {
display: block;
cursor: pointer;
}

.huebee__cursor {
width: 15px;
height: 15px;
position: absolute;
left: 0px;
top: 0px;
box-sizing: content-box;
border: 3px solid white;
border-radius: 5px;
pointer-events: none;
}

.huebee__cursor.is-hidden { opacity: 0; }

.huebee__close-button {
display: block;
position: absolute;
width: 24px;
height: 24px;
top: -9px;
right: -9px;
border-radius: 12px;
background: #222;
}

.huebee__close-button__x {
stroke: white;
stroke-width: 3;
stroke-linecap: round;
}

.huebee__close-button:hover {
background: white;
cursor: pointer;
}

.huebee__close-button:hover .huebee__close-button__x {
stroke: #222;
}
4 changes: 4 additions & 0 deletions dist/huebee.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f24232e

Please sign in to comment.