Last active
August 29, 2015 14:07
-
-
Save mishcherin/be6a5ddee17045a701b0 to your computer and use it in GitHub Desktop.
vertical fixed menu with text rotation
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 class="menu"> | |
<li class="menu_i"><span class="menu_i_tx">текст</span></li> | |
<li class="menu_i"><span class="menu_i_tx">Варфаламей Константинопольский</span></li> | |
<li class="menu_i"><span class="menu_i_tx">lorem impsum</span></li> | |
</ul> |
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
.menu { | |
position: fixed; | |
top: 10px; | |
left: 10px; | |
display: block; | |
width: auto; | |
text-align: left; | |
} | |
.menu_i { | |
list-style: none outside; | |
background: #ccc; | |
border: 1px solid #000; | |
padding: 10px 0; | |
margin: 10px 0 0; | |
display: block; | |
overflow: hidden; | |
width: 25px; | |
line-height: 25px; | |
} | |
.menu_i_tx { | |
transform: translate(0,100%) rotate(-90deg); | |
transform-origin: 0 0; | |
white-space: nowrap; | |
display: inline-block; | |
vertical-align: top; | |
} | |
.menu_i_tx:after { | |
content: ""; | |
float: left; | |
margin-top: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment