29 lines
510 B
CSS
29 lines
510 B
CSS
@import url("reg/index.css");
|
|
@import url("init/index.css");
|
|
@import url("home/index.css");
|
|
@import url("account/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;
|
|
}
|