odin-default-css-exercises/animation/01-button-hover/style.css

19 lines
343 B
CSS
Raw Normal View History

2021-10-17 16:10:16 +00:00
#transition-container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
}
button {
2022-01-12 19:39:47 +00:00
border-radius: 8px;
border: none;
background-color: #2563eb;
color: white;
font-size: 18px;
padding: 16px 24px;
2021-10-17 16:10:16 +00:00
text-align: center;
2022-01-12 19:39:47 +00:00
}