Created
October 7, 2015 16:46
-
-
Save jarek-foksa/dba2cc73cba436914087 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* | |
* @copyright | |
* © 2012-2015 Jarosław Foksa | |
*/ | |
:host { | |
width: 100px; | |
height: 35px; | |
display: block; | |
} | |
main { | |
width: 100%; | |
height: 100%; | |
border: 1px solid #000; | |
position: relative; | |
} | |
canvas { | |
width: 100%; | |
height: 100%; | |
touch-action: pan-y; | |
} | |
#marker { | |
width: 12px; | |
height: calc(100% - 2px); | |
position: absolute; | |
bottom: 0%; | |
left: 0%; | |
transform: translateX(-8px); | |
pointer-events: none; | |
outline: 1px solid black; | |
border: 1px solid white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment