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

21 lines
364 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 {
width: 158px;
height: 55px;
border: 1px solid black;
border-radius: 5px;
background-color: white;
color: black;
font-size: small;
text-align: center;
}