Files
vercel__next.js/examples/basic-css/styles.module.css
2024-05-08 21:47:14 +02:00

14 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;
}