Created
November 13, 2015 20:54
-
-
Save nathaningram/7fe101c52b54a4809fc4 to your computer and use it in GitHub Desktop.
Design to Builder Webinar CSS
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
| /*************************************************** | |
| Design to Builder Webinar CSS | |
| ***************************************************/ | |
| /* Header + Nav */ | |
| ul#menu-vandalay-menu li a { | |
| color: #17335B; | |
| text-decoration: none; | |
| font-weight: bold; | |
| text-transform: uppercase; | |
| padding: 0 1.15em; | |
| -webkit-transition: all .15s linear; | |
| -moz-transition: all .15s linear; | |
| -o-transition: all .15s linear; | |
| transition: all .15s linear; | |
| } | |
| ul#menu-vandalay-menu li a:hover { | |
| color: #5CBEEC; | |
| -webkit-transition: all .15s linear; | |
| -moz-transition: all .15s linear; | |
| -o-transition: all .15s linear; | |
| transition: all .15s linear; | |
| } | |
| ul#menu-vandalay-menu li { | |
| float: left; | |
| } | |
| ul#menu-vandalay-menu { | |
| float: right; | |
| margin-top: 15px; | |
| } | |
| .builder-module-1 { | |
| padding: 20px 0 !important; | |
| } | |
| .builder-module-1 .builder-module-sidebar .widget-background-wrapper { | |
| margin-bottom: 0 !important; | |
| } | |
| /* Hero Area */ | |
| #builder-module-564637fbd0132-background-wrapper { | |
| background: url(images/hero.jpg) no-repeat left center; | |
| background-size: cover; | |
| height: 500px; | |
| } | |
| h1.hero-text { | |
| font-size: 3em; | |
| color: #fff; | |
| padding-top: 200px; | |
| text-shadow: 0px 0px 10px #000; | |
| } | |
| .btn-large { | |
| font-size: 1.875em; | |
| border-radius: 20px; | |
| border: 2px #fff solid; | |
| padding: .15em 1em; | |
| font-weight: bold; | |
| } | |
| /* Information Area */ | |
| #builder-module-564637fbd01ce-background-wrapper { | |
| padding: 50px 0; | |
| } | |
| .btn-small { | |
| font-size: 1.375em; | |
| font-weight: bold; | |
| padding: .2em 2em; | |
| border-radius: 10px; | |
| line-height: 1em; | |
| } | |
| /* Art Vandalay */ | |
| #builder-module-564637fbd0267-background-wrapper { | |
| background: url(images/slice1.png) no-repeat center top; | |
| } | |
| #text-5-background-wrapper { | |
| margin-bottom: 0 !important; | |
| } | |
| #text-5 img { | |
| position: relative; | |
| bottom: -7px; | |
| } | |
| #it_widget_content-6 { | |
| margin-top: 50px; | |
| color: #2A1770; | |
| } | |
| /* Footer */ | |
| .builder-module-last-background-wrapper { | |
| background: #333; | |
| border-top: 5px #111 solid; | |
| color: #fff; | |
| } | |
| .builder-module-last a { | |
| color: #fff; | |
| text-decoration: none; | |
| } | |
| .builder-module-last a:hover { | |
| text-decoration: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment