mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
24 lines
332 B
CSS
24 lines
332 B
CSS
html, body, .ua-choices {
|
|
height: 100px;
|
|
width: 120px;
|
|
margin: 0;
|
|
}
|
|
|
|
.ua-choices {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.ua-choice {
|
|
height: 20%;
|
|
margin: 0.2em;
|
|
padding: 0.2em;
|
|
background-color: #E5F2F2;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ua-choice:hover {
|
|
background-color: #CFF2F2;
|
|
}
|