Files
webextensions-examples/beastify/popup/choose_beast.css
EvolvedCode 2c08537550 Disappearing buttons
Can't get it to work between popups.
2016-10-14 02:08:27 +03:00

33 lines
370 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;
}
.inactive {
opacity: 0;
pointer-events: none;
}