π―
Download git for your operating system at: https://git-scm.com/downloads
Download VS Code https://code.visualstudio.com/
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
.burger-menu, | |
.burger-menu.open { | |
display: inline-block; | |
cursor: pointer; | |
position: fixed; | |
right: 20px; | |
bottom: 40px; | |
z-index: 9999; | |
background: #fff; | |
padding: 10px; |
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
import React from "react"; | |
export default ({ open, ...props }) => ( | |
<div className={open ? "burger-menu open" : "burger-menu"} {...props}> | |
<div className="bar1" key="b1" /> | |
<div className="bar2" key="b2" /> | |
<div className="bar3" key="b3" /> | |
</div> | |
); |
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
import React from "react"; | |
export default ({ open}) => ( | |
<div className={open ? "burger-menu open" : "burger-menu"}> | |
<div className="bar1" key="b1" /> | |
<div className="bar2" key="b2" /> | |
<div className="bar3" key="b3" /> | |
</div> | |
); |
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
[tooltip]:hover::after,[tooltip]:hover::before { | |
opacity:1 | |
} |
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
[tooltip-position='left']::before{ | |
left:0%; | |
top:50%; | |
margin-left:-12px; | |
transform:translatey(-50%) rotate(-90deg) | |
} | |
[tooltip-position='top']::before{ | |
left:50%; | |
} | |
[tooltip-position='bottom']::before{ |
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
button{ | |
margin:auto; | |
background: #3498db; | |
font-family: Arial; | |
color: #ffffff; | |
font-size: 14px; | |
} | |
[tooltip]{ | |
margin:20px; | |
position:relative; |