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
.flex { display: flex; } | |
.inline-flex { display: inline-flex; } | |
.flex-auto { | |
flex: 1 1 auto; | |
min-width: 0; | |
min-height: 0; | |
} | |
.flex-none { flex: none; } |
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
"use strict"; | |
function createEl(template) { | |
var el = document.createElement('div'); | |
el.innerHTML = template.trim(); | |
return el.firstChild; | |
} | |
function createSvgEl(template) { | |
var el = createEl('\n <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' + template.trim() + '</svg>\n '); |
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
#92DA71,37AA77,007D76,FDB279,DF7342,BF261B,A8DDB5,00A9B9,0868AC,FBB3BB,E06C96,B80C83,AFC8E0,8490CE,894AA1 |
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
<div class="store-flow"> | |
<div class="store-flow-inner"> | |
<div class="store-flow-item is-done"> | |
<div class="store-flow-icon"> | |
<span class="store-flow-number">1</span> | |
<span class="store-flow-check"> | |
</span> | |
</div> | |
<div class="store-flow-text"> | |
<div class="store-flow-header">Design Elements</div> |
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
{ | |
"currencies": [ | |
{ | |
"id": "0", | |
"name": "Euro", | |
"abbreviation": "EUR" | |
}, | |
{ | |
"id": "1", | |
"name": "Yen", |
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
<div>$330.46</div> | |
<div>$51.11</div> | |
<div>$32.47</div> | |
<div>$31.04</div> | |
<div>$24.59</div> | |
<div>$16.59</div> | |
<div>$1.52</div> | |
<div>$456.31</div> |
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
.caret { | |
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSI2IiB2aWV3Qm94PSItMyAtMSAxOSA2Ij48cGF0aCBmaWxsPSIjODU5NkE1IiBkPSJNNi0uOGMtLjEtLjEtLjItLjItLjMtLjJoLTguNGMtLjEgMC0uMi4xLS4zLjJ2LjFsLjEuMyA0LjIgNS4zLjIuMS4yLS4xTDUuOS0uNCA2LS42di0uMnoiLz48L3N2Zz4=); | |
} |