1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
| html,body { padding: 0; margin: 0; width: 100vw; height: 50vh; display: grid; place-items: center; background-color: #e6e6e6;
} .neu { width: 200px; height: 50px; border: none; border-radius: 20px; background-color: #e6e6e6; box-shadow: 5px 5px 10px #bbbbbb, -5px -5px 10px #ffffff; } .neu:active { box-shadow: inset 5px 5px 10px #bbbbbb, inset -5px -5px 10px #ffffff; } .neu:focus { outline: none; } .neu span { display: block; user-select: none; color: #767676; font-size: 24px; text-align: center; line-height: 36px; transition: 0.1s; } .neu:active span { transform: scale(0.95); } .neu#but1{ position: absolute; top:100px; left:0px; right:0px; bottom:0px; margin:auto; } .ninput{ width: 200px; height: 50px; border: none; border-radius: 20px; background-color: #e6e6e6; box-shadow: 5px 5px 10px #bbbbbb, -5px -5px 10px #ffffff; } .ninput#in1{ position: absolute; top:-190px; left:0px; right:0px; bottom:0px; margin:auto; } .ninput#in2{ position: absolute; top:-40px; left:0px; right:0px; bottom:0px; margin:auto; } .ndiv { width: 500px; height: 500px; border: none; border-radius: 20px; background-color: #bfc0bf; opacity:0.95; box-shadow: 5px 5px 10px #494848, -5px -5px 10px #ffffff; position: absolute; top:0px; left:0px; right:0px; bottom:0px; margin:auto; } .bgimg { height: 300%; width: 100%; background: linear-gradient(63deg, #999 23%, transparent 23%) 7px 0, linear-gradient(63deg, transparent 74%, #999 78%), linear-gradient(63deg, transparent 34%, #999 38%, #999 58%, transparent 62%),#444; background-size: 16px 48px; }
.ntitle{ font-size: 50px; top:10px; text-align:center; }
|