123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- :root {
- --pageBGColor: #fff;
- --lightControlBGColor: #e6e6e6;
- --primaryControlBGColor: #0a84ff;
- --primaryControlFGColor: #fff;
- --primaryControlHoverColor: #0473e2;
- --inputTextColor: #737373;
- --errorColor: #d70022;
- --linkColor: #0094fb;
- --textColor: #0c0c0d;
- --lightBorderColor: rgba(12, 12, 12, 0.2);
- --lightTextColor: #737373;
- --successControlBGColor: #12bc00;
- --successControlFGColor: #fff;
- }
- html {
- font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'segoe ui',
- 'helvetica neue', helvetica, ubuntu, roboto, noto, arial, sans-serif;
- font-weight: 200;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'segoe ui',
- 'helvetica neue', helvetica, ubuntu, roboto, noto, arial, sans-serif;
- display: flex;
- flex-direction: column;
- margin: 0;
- min-height: 100vh;
- }
- input,
- select,
- textarea,
- button {
- font-family: inherit;
- margin: 0;
- }
- a {
- text-decoration: none;
- }
- .main {
- display: flex;
- flex: auto;
- padding: 0 25px;
- box-sizing: border-box;
- min-height: 500px;
- max-height: 630px;
- height: 100px;
- }
- .stripedBox {
- flex: none;
- position: relative;
- width: 400px;
- background-color: white;
- border-radius: 6px;
- box-shadow: 0 0 0 3px rgba(12, 12, 13, 0.2);
- background-image: repeating-linear-gradient(
- 45deg,
- white,
- white 5px,
- #ea000e 5px,
- #ea000e 25px,
- white 25px,
- white 30px,
- #0083ff 30px,
- #0083ff 50px
- );
- }
- .mainContent {
- height: 100%;
- background-color: white;
- box-sizing: border-box;
- margin: 0 10px;
- padding: 10px 10px 28px;
- display: flex;
- flex-direction: column;
- }
- .spacer {
- flex: auto;
- }
- .uploads {
- flex: 0 0 262px;
- position: relative;
- }
- .noscript {
- text-align: center;
- border: 3px solid var(--errorColor);
- border-radius: 6px;
- }
- .btn {
- display: block;
- width: 100%;
- height: 70px;
- line-height: 70px;
- font-size: 21px;
- font-weight: 500;
- text-transform: uppercase;
- text-align: center;
- letter-spacing: 0.56px;
- color: var(--primaryControlFGColor);
- background: var(--primaryControlBGColor);
- cursor: pointer;
- border: 0;
- border-radius: 5px;
- }
- .btn:hover {
- background-color: var(--primaryControlHoverColor);
- }
- .btn--stripes {
- background: repeating-linear-gradient(
- -65deg,
- #7c7c7c 0,
- #7c7c7c 17px,
- #737373 17px,
- #737373 30px
- );
- background-size: 300% 300%;
- animation: barberpole 12s linear infinite;
- }
- @keyframes barberpole {
- 0% {
- background-position: 100% 0%;
- }
- 100% {
- background-position: 0% 0%;
- }
- }
- .input {
- border: 1px solid var(--lightBorderColor);
- font-size: 20px;
- color: var(--inputTextColor);
- font-family: 'SF Pro Text', sans-serif;
- font-weight: 300;
- padding-left: 10px;
- padding-right: 10px;
- }
- .input--noBtn {
- border-radius: 6px;
- }
- .input--error {
- border-color: var(--errorColor);
- }
- .inputBtn.inputError {
- background-color: var(--errorColor);
- }
- .inputBtn.inputError:hover {
- background-color: var(--errorColor);
- }
- .cursor--pointer {
- cursor: pointer;
- }
- .link {
- color: var(--linkColor);
- text-decoration: none;
- }
- .link:focus,
- .link:active,
- .link:hover {
- color: var(--primaryControlHoverColor);
- }
- .link--action {
- font-weight: 500;
- font-size: 14px;
- text-align: center;
- }
- .page {
- height: 100%;
- margin: 0;
- display: flex;
- flex-direction: column;
- text-align: center;
- }
- .progressSection {
- margin: 0 auto;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- text-align: center;
- font-size: 15px;
- }
- .progressSection__text {
- color: var(--lightTextColor);
- letter-spacing: -0.4px;
- margin-top: 24px;
- margin-bottom: 74px;
- }
- .effect--fadeOut {
- opacity: 0;
- animation: fadeout 200ms linear;
- }
- .goBackButton {
- position: absolute;
- top: 0;
- left: 0;
- margin: 18px;
- }
- @keyframes fadeout {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- .effect--fadeIn {
- opacity: 1;
- animation: fadein 200ms linear;
- }
- @keyframes fadein {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- .error {
- color: var(--errorColor);
- font-weight: 600;
- }
- .title {
- color: var(--textColor);
- font-size: 33px;
- line-height: 40px;
- margin: 20px auto;
- text-align: center;
- max-width: 520px;
- font-family: 'SF Pro Text', sans-serif;
- word-wrap: break-word;
- }
- .description {
- font-size: 13px;
- text-align: left;
- margin: 14px auto;
- color: var(--lightTextColor);
- width: 95%;
- }
- .visible {
- visibility: visible !important;
- }
- .noDisplay {
- display: none;
- }
- .flexible {
- flex: 1;
- }
- @media (max-device-width: 750px), (max-width: 750px) {
- .description {
- margin: 0 auto 25px;
- }
- .main {
- flex-direction: column;
- min-height: 700px;
- }
- .spacer {
- flex: none;
- height: 0;
- }
- .stripedBox {
- max-height: 550px;
- flex: 1;
- }
- .uploads {
- flex: none;
- }
- .footer {
- margin: 15px;
- }
- }
|