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
| *{ margin: 0; padding: 0; color: white; } html,body{ box-sizing: border-box; scroll-behavior:smooth; } #hello-vue{ font-size: 50px; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100vh; background-image: linear-gradient(62deg, #3a3d40 0%, #181719 100%); } button{ width: 10%; height: 3%; color: teal; margin-top: 20px; transition: all 0.5s linear; } button:hover{ transform: scale(1.2); border-radius: 4px; }
|