A Pen by Warren Mira on CodePen.
Created
February 3, 2015 01:32
-
-
Save shawnsandy/4ba6d0722a411f235f28 to your computer and use it in GitHub Desktop.
QwqLLX
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
| <div style='margin: 40px auto; width:220px; background: #2b3643;' id='demo1'> | |
| </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
| /** @jsx React.DOM */ | |
| React.render( | |
| <SideNav.Menu path='#' itemHeight="32px" className="sidenav"> | |
| <SideNav.MenuItem itemKey="truck"> | |
| <SideNav.ILeftItem className="fa fa-truck"> | |
| Truck | |
| </SideNav.ILeftItem> | |
| </SideNav.MenuItem> | |
| <SideNav.MenuItem itemKey="bed"> | |
| <SideNav.ILeftItem className="fa fa-bed"> | |
| Bed | |
| </SideNav.ILeftItem> | |
| </SideNav.MenuItem> | |
| <SideNav.MenuItem itemKey="camera"> | |
| <SideNav.ILeftItem className="fa fa-camera"> | |
| Camera | |
| </SideNav.ILeftItem> | |
| </SideNav.MenuItem> | |
| </SideNav.Menu>, | |
| document.getElementById("demo1") | |
| ); |
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
| ul.sidenav li { | |
| color: #FFF; | |
| } | |
| ul.sidenav li > a { | |
| padding-left: 6px; | |
| color: #FFF; | |
| } | |
| ul.sidenav li > a > i { | |
| padding-right: 8px; | |
| } | |
| ul.sidenav li > a:hover { | |
| text-decoration: none; | |
| background: #1caf9a; | |
| cursor: pointer; | |
| } | |
| ul.sidenav li > a:focus { | |
| text-decoration: none; | |
| } | |
| li.sidenav-selected { | |
| background: #1caf9a; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment