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
| <!-- remove this lines --!> | |
| <link href='http://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,300' rel='stylesheet' type='text/css'> | |
| <link href='http://fonts.googleapis.com/css?family=Oswald:400,500,600,700,800,300' rel='stylesheet' type='text/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
| #!/usr/bin/env bash | |
| # fail hard | |
| set -o pipefail | |
| # fail harder | |
| set -eu | |
| # for ${DOCUMENT_ROOT%%*(/)} pattern further down | |
| shopt -s extglob | |
| # for detecting when -l 'logs/*.log' matches nothing | |
| shopt -s nullglob |
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
| AuthType Basic | |
| AuthName "Please enter the password" | |
| <If "%{HTTP_HOST} == 'myapp.herokuapp.com'"> | |
| AuthUserFile /app/web/.htpasswd | |
| </If> | |
| <Else> | |
| AuthUserFile .htpasswd | |
| </Else> | |
| Require valid-user |
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
| @import url('//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700'); | |
| body { | |
| margin: 0; | |
| font-family: 'Poppins'; | |
| background-color: white; | |
| } | |
| .app { | |
| height: 100vh; | |
| background: rgb(244, 245, 249); |
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
| https://dev.opera.com/articles/css-will-change-property/ | |
| https://css-tricks.com/weighing-svg-animation-techniques-benchmarks/ | |
| https://sarahdrasnerdesign.com/ |
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
| .nav-ul a, .nav-ul a:link, .nav-ul a:hover, .nav-ul a:visited{ | |
| text-decoration: none; | |
| color: rgb(225, 227, 235); | |
| } | |
| .nav-ul .active a, .nav-ul .active a:link, .nav-ul .active a:hover, .nav-ul .active a:visited{ | |
| text-decoration: none; | |
| color: rgb(105, 161, 239); | |
| } |
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
| .footer { | |
| height: 48.7058823529px; | |
| } |
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
| $screen_width_px: 320; /* this is widht of iPhone5 */ | |
| @media all and (min-width: 414px) { | |
| $screen_width_px: 414; /* this is widht of iPhone6 Plus */ | |
| } | |
| $sketch_width_pt: 187; /* This is width in zeplin.io */ | |
| @function pt2px($num_pt){ | |
| @return ceil(($screen_width_px/$sketch_width_pt)*$num_pt + 0px); | |
| } |
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
| .app { | |
| height: 100%; | |
| background: white; | |
| display: -webkit-box; | |
| display: -ms-flexbox; | |
| display: flex; | |
| -webkit-box-orient: vertical; | |
| -webkit-box-direction: normal; | |
| -ms-flex-direction: column; |
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
| https://icecreamapps.com/Screen-Recorder/ | |
| https://obsproject.com/ ++ | |
| https://www.bandicam.com/ | |
| http://www.fraps.com/ (cracked) | |
| https://camtasia-studio.en.softonic.com/ |