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