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

19 lines
343 B
CSS
Raw Normal View History

2021-10-17 09:10:16 -07: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 11:39:47 -08:00
border-radius: 8px;
border: none;
background-color: #2563eb;
color: white;
font-size: 18px;
padding: 16px 24px;
2021-10-17 09:10:16 -07:00
text-align: center;
2022-01-12 11:39:47 -08:00
}