mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
28 lines
317 B
CSS
28 lines
317 B
CSS
html, body {
|
|
width: 100px;
|
|
}
|
|
|
|
.button {
|
|
margin: 3% auto;
|
|
padding: 4px;
|
|
text-align: center;
|
|
font-size: 1.5em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #CFF2F2;
|
|
}
|
|
|
|
.beast {
|
|
background-color: #E5F2F2;
|
|
}
|
|
|
|
.clear {
|
|
background-color: #E74C3C;
|
|
}
|
|
|
|
.clear:hover {
|
|
background-color: #C0392B;
|
|
}
|