front/src/components/index.css
2024-09-21 13:32:52 +03:00

27 lines
445 B
CSS

@import url("reg/index.css");
@import url("init/index.css");
.MyButton {
text-decoration: none;
border: 2px solid black;
border-radius: 10px;
background-color: black;
color: white;
padding: 15px;
justify-content: center;
width: 9rem;
transition: background-color 0.2s ease-in, border 0.2s ease-in;
}
.MyButton:hover {
background-color: orange;
border: 2px solid orange;
cursor: pointer;
}