Created
November 20, 2014 22:06
-
-
Save NoahDavidATL/67d9a38a69190cf99e99 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$fad-img--width: 940px; | |
$fad-img--height: 724px; | |
%inherit-font { | |
color: #000; | |
font-weight: normal; | |
} | |
.fad-landing { | |
&__img { | |
width: $fad-img--width; | |
height: $fad-img--height; | |
display: table; | |
background-repeat: no-repeat; | |
background-position: center; | |
overflow: hidden; | |
padding-top: 10px; | |
&__txt { | |
display: table-cell; | |
vertical-align: middle; | |
padding: 120px 0 0 80px; | |
p { | |
@extend %inherit-font; | |
} | |
ul { | |
margin: -15px 0 0 30px; | |
line-height: 120%; | |
& li { @extend %inherit-font; } | |
} | |
} | |
} | |
} |
This file contains 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
.fad-landing__img__txt p, .fad-landing__img__txt ul li { | |
color: #000; | |
font-weight: normal; | |
} | |
.fad-landing__img { | |
width: 940px; | |
height: 724px; | |
display: table; | |
background-repeat: no-repeat; | |
background-position: center; | |
overflow: hidden; | |
padding-top: 10px; | |
} | |
.fad-landing__img__txt { | |
display: table-cell; | |
vertical-align: middle; | |
padding: 120px 0 0 80px; | |
} | |
.fad-landing__img__txt ul { | |
margin: -15px 0 0 30px; | |
line-height: 120%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment