Created
December 17, 2015 18:44
-
-
Save montogeek/260148c4fa74e8090a33 to your computer and use it in GitHub Desktop.
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
.feature-new-design { | |
> .container { | |
background-color: @color-white; | |
.cover { | |
.entity .cover; | |
position: relative; | |
width: 250px; | |
height: 250px; | |
margin: 0 auto; | |
.item-cover { | |
background-color: #fff; | |
width: 100%; | |
height: 100%; | |
background-size: cover; | |
} | |
} | |
h1 { | |
font-size: @fsize-35; | |
font-family: @primary-font; | |
color: @color-black; | |
line-height: 0.75; | |
text-align: center; | |
text-transform: none; | |
} | |
.description { | |
font-family: @primary-font; | |
font-size: @fsize-17; | |
color: @nf-color-white; | |
} | |
h3 { | |
font-family: @primary-font; | |
font-size: @fsize-25; | |
line-height: 1.125; | |
text-align: center; | |
text-transform: none; | |
margin-top: 50px; | |
} | |
.people { | |
.integrantes { | |
list-style-type: none; | |
padding: 0; | |
li { | |
display: inline-block; | |
&:not(:first-child) { | |
margin-left: 20px; | |
} | |
} | |
.rounded { | |
width: 60px; | |
height: 60px; | |
border-radius: 50%; | |
background-position: center; | |
} | |
} | |
} | |
.tags { | |
list-style: none; | |
padding: 0; | |
margin: 20px 0; | |
li { | |
background-color: @nf-color-whiteB; | |
display: inline-block; | |
padding: 3px 12px; | |
border-radius: 5px; | |
&:not(:first-child) { | |
margin-left: 12px; | |
} | |
a { | |
text-transform: uppercase; | |
font-size: @fsize-25; | |
color: @color-white; | |
} | |
} | |
} | |
hr { | |
border: 0; | |
height: 0; | |
border-top: 1px solid @nf-color-black; | |
&.section { | |
width: 140px; | |
} | |
&.subsection { | |
width: 20px; | |
} | |
} | |
.join { | |
position: absolute; | |
top: 30px; | |
right: 30px; | |
background-color: @color-green; | |
font-size: @fsize-17; | |
color: @color-white; | |
padding: 6px 16px; | |
border-radius: 5px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment