A Pen by uriuriuriu on CodePen.
Created
July 6, 2014 08:08
-
-
Save uriuriuriu/6c25b21332280a430d38 to your computer and use it in GitHub Desktop.
A Pen by uriuriuriu.
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
| nav#sidebar | |
| dl#sidebar_list | |
| dt | |
| a href="" | |
| i.icon-a | |
| br | |
| | home | |
| dd | |
| ul | |
| li | |
| a yes01 | |
| li | |
| a yes02 | |
| li | |
| a yes03 | |
| li | |
| a yes04 | |
| li | |
| a yes05 | |
| dt | |
| a href="" | |
| i.icon-b | |
| br | |
| | list | |
| dd | |
| ul | |
| li | |
| a no01 | |
| li | |
| a no02 | |
| li | |
| a no03 | |
| li | |
| a no04 | |
| li | |
| a no05 | |
| dt | |
| a href="" | |
| i.icon-c | |
| br | |
| | setting | |
| dd | |
| ul | |
| li | |
| a opp01 | |
| li | |
| a opp02 | |
| div#comment Please hover over sideber. |
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
| /* var */ | |
| @grayDarker: #222; | |
| @grayDark: #333; | |
| @gray: #555; | |
| @grayLight: #999; | |
| @grayLighter: #eee; | |
| @white: #fff; | |
| @orange: #f89406; | |
| @sidebar_width: 80px; | |
| @sidebar_child_width: 120px; | |
| /* mixin */ | |
| .box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) { | |
| -webkit-box-shadow: @shadow; | |
| -moz-box-shadow: @shadow; | |
| box-shadow: @shadow; | |
| } | |
| /* animation */ | |
| .show_child_anime(){ | |
| 0% { left:-@sidebar_child_width; } | |
| 100% { left: @sidebar_width; } | |
| } | |
| @keyframes show_child {.show_child_anime()} | |
| @-webkit-keyframes show_child {.show_child_anime()} | |
| .hide_child_anime(){ | |
| 0% { left: @sidebar_width; } | |
| 100% { left:-@sidebar_child_width; } | |
| } | |
| @keyframes hide_child {.hide_child_anime()} | |
| @-webkit-keyframes hide_child {.hide_child_anime()} | |
| .set_anime(@name, @timing, @iteration, @duration){ | |
| /* Firefox 4+ */ | |
| -moz-animation-name: @name; | |
| -moz-animation-timing-function: @timing; | |
| -moz-animation-iteration-count: @iteration; | |
| -moz-animation-duration: @duration; | |
| /* Webkit */ | |
| -webkit-animation-name: @name; | |
| -webkit-animation-timing-function: @timing; | |
| -webkit-animation-iteration-count: @iteration; | |
| -webkit-animation-duration: @duration; | |
| } | |
| /* icon */ | |
| /* | |
| this is dammy icon's css. | |
| please use there icon set. | |
| http://fontello.com/ | |
| */ | |
| i[class^="icon-"]:before{ | |
| font-family: 'Economica', sans-serif; | |
| font-size:100px; | |
| } | |
| i.icon-a:before {content: "A";} | |
| i.icon-b:before {content: "B";} | |
| i.icon-c:before {content: "C";} | |
| /* main */ | |
| #sidebar{} | |
| dl#sidebar_list:after{ | |
| content:""; | |
| display:block; | |
| position: fixed; | |
| top:0px; left:0px; | |
| width:@sidebar_width; | |
| height:100%; | |
| background-color: @grayDark; | |
| .box-shadow(8px 0 20px rgba(0,0,0,.1)); | |
| } | |
| dl#sidebar_list{ | |
| font-family: 'Economica', sans-serif; | |
| position: fixed; | |
| top:0px; left:0px; | |
| width:@sidebar_width; | |
| height:100%; | |
| background-color: @grayDark; | |
| dt{ | |
| position: relative; | |
| z-index: 100; | |
| list-style-type: none; | |
| text-align: center; | |
| a{ | |
| color:@gray; | |
| font-weight: bold; | |
| text-decoration: none; | |
| display:block; | |
| padding:20px; | |
| transition:color .5s ease-in; | |
| transition:background-color .5s ease-in; | |
| &:hover{ | |
| color:@orange; | |
| background-color: @grayDarker; | |
| } | |
| } | |
| } | |
| dd{ | |
| .set_anime(hide_child, ease-out, once, 0.3s); | |
| display:block; | |
| position: fixed; | |
| top:0px; | |
| left:-@sidebar_width - @sidebar_child_width; | |
| width:@sidebar_width + @sidebar_child_width; | |
| height:100%; | |
| background-color:rgba(0,0,0,0.7); | |
| li{ | |
| list-style-type: none; | |
| text-align: center; | |
| border-bottom: 1px solid rgba(0,0,0,0.2); | |
| overflow: hidden; | |
| a{ | |
| color:@orange; | |
| display:block; | |
| font-size: 20px; | |
| padding:0.8em; | |
| height:1em; | |
| line-height:1em; | |
| transition:color .5s ease-in; | |
| transition:background-color .5s ease-in; | |
| &:hover{ | |
| color:@white; | |
| text-decoration: none; | |
| background-color: @orange; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| /* Activating the animation */ | |
| dl#sidebar_list dt:hover + dd, | |
| dl#sidebar_list dd:hover{ | |
| display:block; | |
| left:@sidebar_width; | |
| .set_anime(show_child, ease-out, once, 0.3s); | |
| } | |
| /* discription */ | |
| body { | |
| background-color:#aa2244; | |
| } | |
| div#comment{ | |
| font-family: 'Economica', sans-serif; | |
| padding:30px 0 0 @sidebar_width + 30px; | |
| color: @grayLighter; | |
| font-size:50px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment