|
| 1 | +body { |
| 2 | + font-family: "Inv Maison Neue","Maison Neue",-apple-system,BlinkMacSystemFont,"Open Sans",open-sans,sans-serif; |
| 3 | +} |
| 4 | + |
| 5 | +.has-advanced-upload { |
| 6 | + outline: 2px dashed #92b0b3; |
| 7 | + outline-offset: -10px; |
| 8 | + |
| 9 | + -webkit-transition: outline-offset .25s ease-in-out, background-color .25s linear; |
| 10 | + transition: outline-offset .25s ease-in-out, background-color .25s linear; |
| 11 | +} |
| 12 | + |
| 13 | +.adding-signature { |
| 14 | + height: 14px; |
| 15 | + color: #000000; |
| 16 | + font-size: 32px; |
| 17 | + font-weight: bold; |
| 18 | + letter-spacing: 0; |
| 19 | + line-height: 14px; |
| 20 | +} |
| 21 | + |
| 22 | +.welcome-line { |
| 23 | + height: 40px; |
| 24 | + color: #000000; |
| 25 | + font-size: 14px; |
| 26 | + letter-spacing: 0; |
| 27 | + line-height: 20px; |
| 28 | + margin-top: 1rem; |
| 29 | +} |
| 30 | + |
| 31 | +#webeid-logout-button { |
| 32 | + height: 2.5rem; |
| 33 | +} |
| 34 | + |
| 35 | +#file-drop-area { |
| 36 | + margin: 0 10rem; |
| 37 | + padding-top: 2rem; |
| 38 | + box-sizing: border-box; |
| 39 | + outline: 2px dashed #92b0b3; |
| 40 | + outline-offset: -10px; |
| 41 | + border-radius: 3px; |
| 42 | + background-color: #F5F5F5; |
| 43 | +} |
| 44 | + |
| 45 | +.is-dragover { |
| 46 | + background-color: #b7dbde !important; |
| 47 | + outline-offset: -20px !important; |
| 48 | + outline-color: #ffffff !important; |
| 49 | +} |
| 50 | + |
| 51 | +#file-name, #file-drop-area, .welcome-line { |
| 52 | + text-align: center; |
| 53 | +} |
| 54 | + |
| 55 | +.eu-logo-fixed { |
| 56 | + display: block; |
| 57 | + position: fixed; |
| 58 | + background: #fff; |
| 59 | + bottom: 0; |
| 60 | + left: 0; |
| 61 | + margin: 0; |
| 62 | + padding: 5px 20px; |
| 63 | + text-align: center; |
| 64 | + z-index: 1000; |
| 65 | +} |
| 66 | + |
| 67 | +.eu-logo-fixed img { |
| 68 | + height: 86px; |
| 69 | +} |
| 70 | + |
| 71 | +/* Remove blue focus outline from accordion buttons */ |
| 72 | +.accordion-button:focus { |
| 73 | + box-shadow: none !important; |
| 74 | + border-color: rgba(0,0,0,.125); |
| 75 | +} |
| 76 | + |
| 77 | +/* Remove blue highlight from active/open accordion buttons */ |
| 78 | +.accordion-button:not(.collapsed) { |
| 79 | + box-shadow: none !important; |
| 80 | + border-color: rgba(0,0,0,.125); |
| 81 | +} |
| 82 | + |
| 83 | +/* Remove any focus-visible styles */ |
| 84 | +.accordion-button:focus-visible { |
| 85 | + box-shadow: none !important; |
| 86 | + outline: none !important; |
| 87 | +} |
| 88 | + |
| 89 | +/* Remove outline from accordion items */ |
| 90 | +.accordion-button { |
| 91 | + outline: none !important; |
| 92 | + font-weight: bold !important; |
| 93 | +} |
| 94 | + |
| 95 | +/* Remove background color from opened accordion sections */ |
| 96 | +.accordion-button:not(.collapsed) { |
| 97 | + background-color: transparent !important; |
| 98 | + color: inherit !important; |
| 99 | +} |
| 100 | + |
| 101 | +/* Keep consistent background for all accordion states */ |
| 102 | +.accordion-button, |
| 103 | +.accordion-button.collapsed, |
| 104 | +.accordion-button:hover, |
| 105 | +.accordion-button:active { |
| 106 | + background-color: transparent !important; |
| 107 | +} |
| 108 | + |
| 109 | +/* Remove any highlighting from accordion body and items */ |
| 110 | +.accordion-item { |
| 111 | + background-color: transparent !important; |
| 112 | + border: none !important; |
| 113 | +} |
| 114 | + |
| 115 | +.accordion-body { |
| 116 | + background-color: transparent !important; |
| 117 | +} |
| 118 | + |
| 119 | +/* Mobile callback loading styles */ |
| 120 | +.loading-page { |
| 121 | + text-align: center; |
| 122 | + padding-top: 3rem; |
| 123 | + font-family: system-ui, sans-serif; |
| 124 | +} |
| 125 | + |
| 126 | +.spinner { |
| 127 | + width: 40px; |
| 128 | + height: 40px; |
| 129 | + border: 4px solid #ccc; |
| 130 | + border-top-color: #007bff; |
| 131 | + border-radius: 50%; |
| 132 | + animation: spin 1s linear infinite; |
| 133 | + margin: 1rem auto; |
| 134 | +} |
| 135 | + |
| 136 | +@keyframes spin { |
| 137 | + to { |
| 138 | + transform: rotate(360deg); |
| 139 | + } |
| 140 | +} |
0 commit comments