DOS-Cinema/src/UI/Button/Button.module.css
2023-02-01 00:44:52 +05:00

12 lines
204 B
CSS

.btn {
border: none;
min-width: 7em;
box-shadow: 0.7em 0.6em 0 #000;
background-color: #C0C0C0;
padding: 0.5em 1em;
margin: 0 20px;
}
.btn:hover {
background-color: #808080;
}