|
| 1 | +body { |
| 2 | + margin: 0; |
| 3 | + background-color: #fcfcfc; |
| 4 | + display: flex; |
| 5 | + flex-direction: column; |
| 6 | + align-items: center; |
| 7 | + justify-content: center; |
| 8 | + height: 100vh; |
| 9 | +} |
| 10 | +input{ |
| 11 | + border: 0; |
| 12 | + outline: 0; |
| 13 | + color: rgb(60, 66, 87); |
| 14 | + background-color: rgb(255, 255, 255); |
| 15 | + box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px; |
| 16 | + border-radius: 4px; |
| 17 | + font-size: 14px; |
| 18 | + line-height: 20px; |
| 19 | + font-weight: 400; |
| 20 | + padding: 4px 8px; |
| 21 | + min-height: 28px; |
| 22 | + vertical-align: middle; |
| 23 | + transition: background-color .24s,box-shadow .24s; |
| 24 | + transition-property: background-color, box-shadow; |
| 25 | + transition-duration: 0.24s, 0.24s; |
| 26 | + transition-timing-function: ease, ease; |
| 27 | + transition-delay: 0s, 0s; |
| 28 | +} |
| 29 | +:focus{ |
| 30 | + box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(58 151 212 / 36%) 0px 0px 0px 4px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px; |
| 31 | +} |
| 32 | + |
| 33 | +button{ |
| 34 | + display: inline-block; |
| 35 | + outline: none; |
| 36 | + cursor: pointer; |
| 37 | + font-size: 16px; |
| 38 | + line-height: 20px; |
| 39 | + font-weight: 600; |
| 40 | + border-radius: 8px; |
| 41 | + padding: 13px 23px; |
| 42 | + border: 1px solid #222222; |
| 43 | + transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s; |
| 44 | + background: #fff; |
| 45 | + color: #222222; |
| 46 | +} |
| 47 | +:hover { |
| 48 | + border-color: #000000; |
| 49 | + background: #f7f7f7; |
| 50 | +} |
| 51 | +#form{ |
| 52 | + |
| 53 | + max-width: 300px; |
| 54 | + min-height: 200px; |
| 55 | + display: flex; |
| 56 | + flex-direction: column; |
| 57 | + justify-content: space-between; |
| 58 | + |
| 59 | + max-width: 500px; |
| 60 | + height: 300px; |
| 61 | + padding: 35px; |
| 62 | + |
| 63 | + border: 1px solid rgba(255, 255, 255, .25); |
| 64 | + border-radius: 20px; |
| 65 | + background-color: rgba(255, 255, 255, 0.45); |
| 66 | + box-shadow: 0px 4px 6px 0px rgba(50,50,93,0.11) , 0px 1px 3px 0px rgba(0,0,0,0.08); |
| 67 | +} |
0 commit comments