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
| .imgs-guide { | |
| border: 1px solid grey; | |
| margin: 0px; | |
| background-size: cover; | |
| background-color: transparent; | |
| width: 100%; | |
| display: flex; | |
| position: relative; | |
| justify-content: space-around; |
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/EndOfLine: | |
| EnforcedStyle: lf |
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
| class Example | |
| def initialize | |
| puts 'Hi' | |
| end | |
| def self.a | |
| puts 'This is method with name in one letter' | |
| end | |
| end | |
| class Example |
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
| * { | |
| border-radius: 0px !important; | |
| } |
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
| main.main{ | |
| overflow-y: auto; | |
| flex: 1 1 auto; | |
| background-color: rgb(244,245,249); | |
| display: block; | |
| &::-webkit-scrollbar-track | |
| { | |
| /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/ | |
| background-color:rgba(244, 245, 249, 1); | |
| } |
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
| $wing_width: 100px; | |
| $wing_height: 360px; | |
| $wing_top: 58px; | |
| $wing_left: -89px; | |
| $wing_right: -89px; | |
| $wing_img_height: 205px; | |
| $wing_br: 3px; | |
| $wing_color: white; | |
| // Iphone 6 |
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
| @mixin wings( | |
| $wing_width, | |
| $wing_height, | |
| $wing_top, | |
| $wing_left, | |
| $wing_right, | |
| $wing_img_height, | |
| $wing_br, | |
| $wing_color) { | |
| & a.left, |
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
| {% extends "login/layout.html" %} {% block content %} | |
| <header class="pose"> | |
| <a href='/login' class='btn-back'></a> | |
| <h2>Pose</h2> | |
| <span class="count">2/40</span> | |
| </header> | |
| <main class="pose"> | |
| <div class="swiper-container"> | |
| <!-- Additional required wrapper --> | |
| <div class="swiper-wrapper"> |
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
| 1) On Desktop Chrome works fine: https://youtu.be/e6jIKx7KM7s | |
| 2) On Iphone dose not works: https://youtu.be/0Nw_dHPhYZQ |
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
| main.pose .center{ | |
| background-color: white; | |
| width: 320px - 43px; // Iphone 5 | |
| height: 662px; | |
| display: flex; | |
| flex-direction: column; | |
| margin: auto; | |
| margin-top: 28px; | |
| border-radius: 3px; | |
| position: relative; |