-
-
Save Txuritan/8961d585e41d2e1a666750b299f66a9f to your computer and use it in GitHub Desktop.
Tumblr Theme
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 class="navbar marginBottom"> | |
| <div class="button"> | |
| <div data-icon="ei-navicon" data-size="s"></div> | |
| </div> | |
| <div class="name">Txuritan</div> | |
| <div class="search"> | |
| <div data-icon="ei-search" data-size="s"></div> | |
| </div> | |
| </div> | |
| <div class="post marginBottom"> | |
| <div class="owl-carousel owl-theme"> | |
| <div> Your Content </div> | |
| <div> Your Content </div> | |
| <div> Your Content </div> | |
| <div> Your Content </div> | |
| <div> Your Content </div> | |
| <div> Your Content </div> | |
| <div> Your Content </div> | |
| </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
| $(document).ready(function(){ | |
| $('.owl-carousel').owlCarousel(); | |
| }); |
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
| <script src="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/evil-icons/1.9.0/evil-icons.min.js"></script> |
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
| @color-background: #f8f8f8; | |
| @color-content: #ffffff; | |
| @margin-bottom: 3px; | |
| body { | |
| background-color: @color-background; | |
| } | |
| .navbar { | |
| background-color: @color-content; | |
| } | |
| .post { | |
| background-color: @color-content; | |
| .header { | |
| } | |
| .body { | |
| } | |
| .footer { | |
| } | |
| } | |
| .marginBottom { | |
| margin-bottom: @margin-bottom; | |
| } |
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
| <link href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.css" rel="stylesheet" /> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/evil-icons/1.9.0/evil-icons.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment