parent
1fa9f2f5a6
commit
1fbf581523
@ -0,0 +1,39 @@ |
||||
var csjs = require('csjs-inject') |
||||
var styleGuide = require('remix-lib').ui.themeChooser |
||||
var styles = styleGuide.chooser() |
||||
|
||||
var css = csjs` |
||||
.tooltip { |
||||
z-index: 1001; |
||||
display: inline-block; |
||||
position: fixed; |
||||
background-color: ${styles.remix.tooltip_CopyToClipboard_BackgroundColor}; |
||||
color: ${styles.remix.tooltip_CopyToClipboard_Color}; |
||||
min-height: 50px; |
||||
min-width: 290px; |
||||
padding: 16px 24px 12px; |
||||
border-radius: 3px; |
||||
bottom: -300; |
||||
left: 40%; |
||||
font-size: 12px; |
||||
text-align: center; |
||||
-webkit-animation-name: animatebottom; |
||||
-webkit-animation-duration: 6s; |
||||
animation-name: animatebottom; |
||||
animation-duration: 6s |
||||
} |
||||
@-webkit-keyframes animatebottom { |
||||
0% {bottom: -300px} |
||||
20% {bottom: 0} |
||||
50% {bottom: 0} |
||||
100% {bottom: -300px} |
||||
} |
||||
@keyframes animatebottom { |
||||
0% {bottom: -300px} |
||||
20% {bottom: 0} |
||||
50% {bottom: 0} |
||||
100% {bottom: -300px} |
||||
} |
||||
` |
||||
|
||||
module.exports = css |
Loading…
Reference in new issue