123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- @font-face {
- font-family: 'Montserrat';
- src: url('assets/fonts/Montserrat-Regular.ttf') format('truetype');
- font-weight: 400;
- }
- @font-face {
- font-family: 'Montserrat';
- src: url('assets/fonts/Montserrat-Medium.ttf') format('truetype');
- font-weight: 500;
- }
- body * {
- box-sizing: border-box;
- }
- body {
- font-family: 'Montserrat';
- font-weight: 500;
- }
- #requestingCameraIcon {
- display: none;
- }
- #requestingCameraPermissions {
- display: none;
- }
- #loadBackground {
- background: url('assets/images/loading.png') top left/cover no-repeat;
- }
- #loadImage {
- display: none;
- }
- #previewContainer {
- background: url('assets/images/preview-background.jpg') center/cover no-repeat;
- }
- .preview-box {
- background: #1362b2;
- background: linear-gradient(180deg, #1362b2 0%, #d20101 100%);
- }
- #videoPreview,
- #imagePreview {
- border-radius: 0;
- border: 1vmin solid transparent;
- background: none;
- max-height: 75vh;
- }
- .bottom-bar {
- height: 15vh;
- }
- .logo {
- position: absolute;
- z-index: 31;
- top: 0;
- left: 0;
- width: 40vw;
- }
- .after-expiriens-buttons {
- position: absolute;
- z-index: 1;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- display: grid;
- grid-template-rows: repeat(3, 1fr);
- grid-row-gap: 3vh;
- }
- .after-expiriens-button {
- font-size: 5vmin;
- font-weight: 500;
- color: #ffffff;
- text-decoration: none;
- padding: 2.4vh 8vw;
- width: 100%;
- background: #d20101;
- border: none;
- display: grid;
- grid-template-columns: 48px 1fr;
- grid-gap: 20px;
- align-items: center;
- }
- .after-expiriens-button svg {
- width: 7vmin;
- height: 7vmin;
- }
- #actionButton {
- font-family: 'Montserrat';
- font-size: 4vmin;
- border-radius: 0;
- color: #ffffff;
- background: #d20101;
- }
- /*
- #downloadButton.capture-preview-button,
- #actionButton.capture-preview-button {
- font-family: 'Montserrat';
- font-size: 4vmin;
- font-weight: 500;
- color: #ffffff;
- padding: 1.5vh 3.5vw;
- width: 41vw;
- background: #d20101;
- display: grid;
- grid-template-columns: 5vmin 1fr;
- grid-gap: 16px;
- align-items: center;
- position: absolute;
- top: 50%;
- transform: translate(0, -50%);
- border-radius: 0;
- }
-
- .capture-preview-button svg {
- width: 5vmin;
- height: 5vmin;
- } */
- .prompt-box-8w {
- background-color: #ffffff !important;
- color: #000000 !important;
- }
- .prompt-button-8w {
- background-color: #828398 !important;
- }
- .button-primary-8w {
- background-color: #d20101 !important;
- }
|