A Pen by João Ramos on CodePen.
Created
February 19, 2015 18:19
-
-
Save poor666/33e8442415b327fdff07 to your computer and use it in GitHub Desktop.
nowrap text
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 class="nobreak"> | |
TEXTO COMPRIDO | |
</div> | |
<ul class="menu"> | |
<li><span class='icon'>icon</span> | |
<span class='text'>text menu</span></li> | |
<li><span class='icon'>icon</span> | |
<span class='text'>text menu</span></li> | |
<li><span class='icon'>icon</span> | |
<span class='text'>text menu</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
@import "bourbon" | |
body | |
padding: 100px | |
ul | |
list-style: none | |
padding: 0 | |
.icon | |
background-color: green | |
display: inline-block | |
.text | |
background-color: yellow | |
display: inline-block | |
width: 10px | |
overflow: hidden | |
white-space: nowrap | |
.nobreak | |
background-color: red | |
white-space: nowrap | |
width: 40px - 10px | |
overflow: hidden | |
@include transition (all 0.1s ease-in) | |
&:hover | |
width: 100px | |
@include transition (all 0.3s ease-out) | |
.menu | |
width: 138px | |
background-color: red | |
&:hover | |
width: 200px | |
@include transition (all 1s ease-out) | |
.text | |
width: 100px | |
@include transition (all 1s ease-out) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment