| 1 | .bd-placeholder-img { |
| 2 | font-size: 1.125rem; |
| 3 | text-anchor: middle; |
| 4 | -webkit-user-select: none; |
| 5 | -moz-user-select: none; |
| 6 | user-select: none; |
| 7 | } |
| 8 | |
| 9 | @media (min-width: 768px) { |
| 10 | .bd-placeholder-img-lg { |
| 11 | font-size: 3.5rem; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | .icon-list { |
| 16 | padding-left: 0; |
| 17 | list-style: none; |
| 18 | } |
| 19 | |
| 20 | .icon-list li { |
| 21 | display: flex; |
| 22 | align-items: flex-start; |
| 23 | margin-bottom: .25rem; |
| 24 | } |
| 25 | |
| 26 | .icon-list li::before { |
| 27 | display: block; |
| 28 | flex-shrink: 0; |
| 29 | width: 1.5em; |
| 30 | height: 1.5em; |
| 31 | margin-right: .5rem; |
| 32 | content: ""; |
| 33 | background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E") no-repeat center center / 100% auto; |
| 34 | } |
| 35 | |
| 36 | p.chord { |
| 37 | margin-bottom: 0; |
| 38 | font-size: 16px; |
| 39 | font-weight: bold; |
| 40 | color: blue; |
| 41 | } |
| 42 | |
| 43 | .onboarding-gif-wrapper { |
| 44 | background-image: url('../images/badge-pretty.gif'); |
| 45 | text-align: center; |
| 46 | line-height: 165vh; |
| 47 | height: 100vh; |
| 48 | background-repeat: no-repeat; |
| 49 | background-size: cover; |
| 50 | } |
| 51 | |
| 52 | /* https://codepen.io/davidelrizzo/pen/vEYvyv */ |
| 53 | /* Shared */ |
| 54 | .vertical-separator { |
| 55 | padding-top: 1em; |
| 56 | } |
| 57 | |
| 58 | .loginBtn { |
| 59 | box-sizing: border-box; |
| 60 | position: relative; |
| 61 | /* width: 13em; - apply for fixed size */ |
| 62 | margin-top: 0.2em; |
| 63 | margin-right: 0.2em; |
| 64 | margin-bottom: 0.2em; |
| 65 | margin-left: 0; |
| 66 | padding: 0 15px 0 46px; |
| 67 | border: none; |
| 68 | text-align: left; |
| 69 | line-height: 34px; |
| 70 | white-space: nowrap; |
| 71 | border-radius: 0.2em; |
| 72 | font-size: 16px; |
| 73 | color: #FFF; |
| 74 | } |
| 75 | |
| 76 | .loginBtn:before { |
| 77 | content: ""; |
| 78 | box-sizing: border-box; |
| 79 | position: absolute; |
| 80 | top: 0; |
| 81 | left: 0; |
| 82 | width: 34px; |
| 83 | height: 100%; |
| 84 | } |
| 85 | |
| 86 | .loginBtn:focus { |
| 87 | outline: none; |
| 88 | } |
| 89 | |
| 90 | .loginBtn:active { |
| 91 | box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1); |
| 92 | } |
| 93 | |
| 94 | |
| 95 | /* Facebook */ |
| 96 | .loginBtn--facebook { |
| 97 | background-color: #4C69BA; |
| 98 | background-image: linear-gradient(#4C69BA, #3B55A0); |
| 99 | /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/ |
| 100 | text-shadow: 0 -1px 0 #354C8C; |
| 101 | } |
| 102 | |
| 103 | .loginBtn--facebook:before { |
| 104 | border-right: #364e92 1px solid; |
| 105 | background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat; |
| 106 | } |
| 107 | |
| 108 | .loginBtn--facebook:hover, |
| 109 | .loginBtn--facebook:focus { |
| 110 | background-color: #5B7BD5; |
| 111 | background-image: linear-gradient(#5B7BD5, #4864B1); |
| 112 | } |
| 113 | |
| 114 | .flex-wrapper { |
| 115 | display: flex; |
| 116 | min-height: 50vh; |
| 117 | flex-direction: column; |
| 118 | justify-content: space-between; |
| 119 | } |