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
| .interface { width: 315px; height: 450px; background: linear-gradient(135deg, rgba(255,182,193,0.5), rgba(173,216,230,0.5)); border-radius: 5px; position: relative; overflow: hidden; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); animation: colorShift 10s infinite ease-in-out; margin: auto; margin-top: 90px; } @keyframes colorShift { 0% { background: linear-gradient(135deg, rgba(255,182,193,0.5), rgba(173,216,230,0.5)); } 25% { background: linear-gradient(135deg, rgba(173,216,230,0.5), rgba(255,182,193,0.5)); } 50% { background: linear-gradient(135deg, rgba(255,182,193,0.5), rgba(173,216,230,0.5)); } 75% { background: linear-gradient(135deg, rgba(173,216,230,0.5), rgba(255,182,193,0.5)); } 100% { background: linear-gradient(135deg, rgba(255,182,193,0.5), rgba(173,216,230,0.5)); } } #username{ width: 250px; height: 36px; border-radius: 5px; margin-top: 30px; margin-left: 31px; border: 1px solid transparent; } #password{ width: 250px; height: 36px; border-radius: 5px; margin-top: 17px; margin-left: 31px; border: 1px solid transparent; } .agreement{ width: 250px; height: 10px; font-size: 12px; margin-top: 15px; margin-left: 31px; color: #666; vertical-align: bottom; } .agreement a { color: #007BFF; text-decoration: none; } .submit_button1{ width: 250px; height: 30px; border-radius: 5px; margin-top: 32px; margin-left: 31px; background-color: #007BFF; color: #fff; text-align: center; line-height: 30px; font-size: 15px; opacity: 0.1; } .circlr { width: 80px; height: 80px; border-radius: 50%; background-size: cover; background-position: center; display: inline-block; margin-top: 30px; margin-left: 120px; } input::placeholder { font-size: 16px; font-weight: normal; color: #999; } .exit{ width: 20px; height: 20px; margin-top: 0; margin-left: 300px; }
|