Last active
January 31, 2023 14:22
-
-
Save iL53n/e142fa688eec24aebe0ca73e14a59b04 to your computer and use it in GitHub Desktop.
Popup with IBAN validation input
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| .popup { | |
| z-index: 100; | |
| width: 100%; | |
| height: 100%; | |
| backdrop-filter: blur(5px); | |
| display: none; | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| text-align: center; | |
| .popup__content { | |
| width: 25%; | |
| overflow: auto; | |
| padding: 50px; | |
| background: white; | |
| border-radius: 8px; | |
| box-shadow: | |
| rgba(0, 0, 0, 0.25) 0px 54px 55px, | |
| rgba(0, 0, 0, 0.12) 0px -12px 30px, | |
| rgba(0, 0, 0, 0.12) 0px 4px 6px, | |
| rgba(0, 0, 0, 0.17) 0px 12px 13px, | |
| rgba(0, 0, 0, 0.09) 0px -3px 5px; | |
| color: black; | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| box-sizing: border-box; | |
| } | |
| } | |
| input { | |
| width: 100%; | |
| padding: 5px; | |
| } | |
| .input-label { | |
| font-size: 14px; | |
| float: left; | |
| } | |
| .btn-group { | |
| float: right; | |
| } | |
| .btn-popup { | |
| cursor: pointer; | |
| outline: 0; | |
| display: inline-block; | |
| margin: 2px; | |
| font-weight: 400; | |
| line-height: 1.5; | |
| text-align: center; | |
| padding: 6px 12px; | |
| border: 1px solid transparent; | |
| //font-size: 16px; | |
| border-radius: .25rem; | |
| &.submit { | |
| color: #FFF; | |
| background-color: #7DAD03; | |
| border-color: #7DAD03; | |
| } | |
| &.reject { | |
| color: #7DAD03; | |
| border-color: #E3E3E3; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment