mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
17 lines
215 B
CSS
17 lines
215 B
CSS
html, body {
|
|
width: 100px;
|
|
}
|
|
|
|
.beast {
|
|
margin: 3% auto;
|
|
padding: 4px;
|
|
text-align: center;
|
|
font-size: 1.5em;
|
|
background-color: #E5F2F2;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.beast:hover {
|
|
background-color: #CFF2F2;
|
|
}
|