Skip to content
Permalink
796c20d445
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
34 lines (29 sloc) 594 Bytes
.word-cloud {
@include clearfix;
.keyword {
@include transition(all 200ms);
background: $black;
color: $white;
display: block;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 100;
line-height: 1.3;
overflow: hidden;
position: absolute;
text-align: center;
text-decoration: none;
white-space: nowrap;
@for $i from 0 through 100 {
&.weight-#{$i} {
@if $i > 10 {
opacity: $i / 100;
} @else {
opacity: .1;
}
&:hover {
opacity: 1;
}
}
}
}
}