rsnext/examples/basic-css/styles.module.css

13 lines
203 B
CSS

.hello {
font:
15px Helvetica,
Arial,
sans-serif;
background: #eee;
padding: 100px;
text-align: center;
transition: 100ms ease-in background;
}
.hello:hover {
background: #ccc;
}