styles.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. @font-face {
  2. font-family: 'Montserrat';
  3. src: url('assets/fonts/Montserrat-Regular.ttf') format('truetype');
  4. font-weight: 400;
  5. }
  6. @font-face {
  7. font-family: 'Montserrat';
  8. src: url('assets/fonts/Montserrat-Medium.ttf') format('truetype');
  9. font-weight: 500;
  10. }
  11. body * {
  12. box-sizing: border-box;
  13. }
  14. body {
  15. font-family: 'Montserrat';
  16. font-weight: 500;
  17. }
  18. #requestingCameraIcon {
  19. display: none;
  20. }
  21. #requestingCameraPermissions {
  22. display: none;
  23. }
  24. #loadBackground {
  25. background: url('assets/images/loading.png') top left/cover no-repeat;
  26. }
  27. #loadImage {
  28. display: none;
  29. }
  30. #previewContainer {
  31. background: url('assets/images/preview-background.jpg') center/cover no-repeat;
  32. }
  33. .preview-box {
  34. background: #1362b2;
  35. background: linear-gradient(180deg, #1362b2 0%, #d20101 100%);
  36. }
  37. #videoPreview,
  38. #imagePreview {
  39. border-radius: 0;
  40. border: 1vmin solid transparent;
  41. background: none;
  42. max-height: 75vh;
  43. }
  44. .bottom-bar {
  45. height: 15vh;
  46. }
  47. .logo {
  48. position: absolute;
  49. z-index: 31;
  50. top: 0;
  51. left: 0;
  52. width: 40vw;
  53. }
  54. .after-expiriens-buttons {
  55. position: absolute;
  56. z-index: 1;
  57. top: 50%;
  58. left: 50%;
  59. transform: translate(-50%, -50%);
  60. display: grid;
  61. grid-template-rows: repeat(3, 1fr);
  62. grid-row-gap: 3vh;
  63. }
  64. .after-expiriens-button {
  65. font-size: 5vmin;
  66. font-weight: 500;
  67. color: #ffffff;
  68. text-decoration: none;
  69. padding: 2.4vh 8vw;
  70. width: 100%;
  71. background: #d20101;
  72. border: none;
  73. display: grid;
  74. grid-template-columns: 48px 1fr;
  75. grid-gap: 20px;
  76. align-items: center;
  77. }
  78. .after-expiriens-button svg {
  79. width: 7vmin;
  80. height: 7vmin;
  81. }
  82. #actionButton {
  83. font-family: 'Montserrat';
  84. font-size: 4vmin;
  85. border-radius: 0;
  86. color: #ffffff;
  87. background: #d20101;
  88. }
  89. /*
  90. #downloadButton.capture-preview-button,
  91. #actionButton.capture-preview-button {
  92. font-family: 'Montserrat';
  93. font-size: 4vmin;
  94. font-weight: 500;
  95. color: #ffffff;
  96. padding: 1.5vh 3.5vw;
  97. width: 41vw;
  98. background: #d20101;
  99. display: grid;
  100. grid-template-columns: 5vmin 1fr;
  101. grid-gap: 16px;
  102. align-items: center;
  103. position: absolute;
  104. top: 50%;
  105. transform: translate(0, -50%);
  106. border-radius: 0;
  107. }
  108. .capture-preview-button svg {
  109. width: 5vmin;
  110. height: 5vmin;
  111. } */
  112. .prompt-box-8w {
  113. background-color: #ffffff !important;
  114. color: #000000 !important;
  115. }
  116. .prompt-button-8w {
  117. background-color: #828398 !important;
  118. }
  119. .button-primary-8w {
  120. background-color: #d20101 !important;
  121. }