Last active
December 17, 2015 19:59
-
-
Save ZackMattor/5664438 to your computer and use it in GitHub Desktop.
Rotating Banner
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 id="splashcontent"> | |
| <div class="rotate active"> | |
| <h1>Tank Automation is NOT tank monitoring</h1> | |
| <p>If you want tank monitors, <a href="#">click here</a> for a list of venders.</p> | |
| </div> | |
| <div class="rotate"> | |
| <h1>Tank Automation is NOT tank monitoring</h1> | |
| <p>If you want to revolutionize your fuel delivery business (and your profits) by tracking <strong>ALL</strong> of your tanks (not just some), learn more about EnerTrac Tank Automation below.</p> | |
| </div> | |
| <div class="rotate"> | |
| <h1>Tank Automation is NOT tank monitoring</h1> | |
| <p><strong>EnerTrac Tank Automation</strong> - the next generation of fuel delivery optimization technology that will revolutionize your business.</p> | |
| </div> | |
| <div class="bannerControls"></div> | |
| </div> |
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
| #splashcontent { | |
| font-family: Arial, Helvetica, sans-serif; | |
| margin:0 0 0 4px; | |
| background-color:#fff; | |
| width:760px; | |
| position: relative; | |
| height:182px; | |
| background-image: url('images/banner_image.png'); | |
| } | |
| .bannerControls { | |
| position: absolute; | |
| top: 165px; | |
| left: 20px; | |
| } | |
| .bannerControls .bannerButton { | |
| margin-right: 5px; | |
| cursor: pointer; | |
| } | |
| #splashcontent .rotate { | |
| display: none; | |
| } | |
| #splashcontent .active { | |
| display: block; !important; | |
| } | |
| #splashcontent p { | |
| color: black; | |
| font-family: Arial, Helvetica, sans-serif; | |
| padding: 5px 330px 11px 12px; | |
| line-height: 21px; | |
| margin: 0px; | |
| } | |
| #splashcontent a { | |
| color: black; | |
| } | |
| #splashcontent a:hover { | |
| color: #555; | |
| } | |
| #splashcontent h1 { | |
| font-size: 21px; | |
| font-weight: bold; | |
| font-family: Arial, Helvetica, sans-serif; | |
| font-style:italic; | |
| border-bottom: 0; | |
| padding: 26px 180px 11px 12px; | |
| margin: 0px; | |
| color: #127c33; | |
| } | |
| #splashcontent img { padding:0; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment