Last active
October 11, 2021 19:34
-
-
Save aleksanderwalczuk/4883222a20699a5dd15838225fcac2b1 to your computer and use it in GitHub Desktop.
avgr
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
| <style> | |
| .last-minute { | |
| .section-content { | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .img-col { | |
| margin-bottom: 90px; | |
| } | |
| .title-container { | |
| display: flex; | |
| flex-direction: column; | |
| margin-bottom: 48px; | |
| } | |
| h2 { | |
| text-align: center; | |
| font: 700 36px/48px $font_oswald; | |
| margin: 0; | |
| } | |
| .subtitle { | |
| font: 500 24px/24px $font_oswald; | |
| text-transform: uppercase; | |
| color: $brown; | |
| margin: 0; | |
| } | |
| } | |
| @include rwd(md) { | |
| .last-minute { | |
| .section-content { | |
| flex-direction: row; | |
| } | |
| .img-col { | |
| margin-bottom: 0; | |
| padding-right: 32px; | |
| } | |
| .title-container { | |
| justify-content: flex-start; | |
| } | |
| h2 { | |
| font: 700 40px/50px $font_oswald; | |
| text-align: left; | |
| margin-bottom: 16px; | |
| } | |
| } | |
| } | |
| </style> | |
| <section class="last-minute"> | |
| <div class="container"> | |
| <div class="section-content"> | |
| <div class="img-col"> | |
| <img src="../assets/gift-ideas/images/last-minute.png" | |
| srcset="../assets/gift-ideas/images/last-minute2x.png 2x" alt=""> | |
| </div> | |
| <div class="content-col"> | |
| <div class="title-container"> | |
| <h2 class="section-heading">last-minute gift idea?</h2> | |
| <p class="subtitle">you found it</p> | |
| </div> | |
| <p> | |
| It’s never too late to give them a gift of their dreams! Simply order one of our gift certificates and | |
| leave the fun of customization to your dear aviator! | |
| </p> | |
| <p> | |
| With their unique gift code, they will be able to pick and personalize their own airplane model, briefing | |
| stick, wall plaque and more! Just in time for a squadron going away, retirement, or pilot traininig | |
| graduation. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment