Files
webextensions-examples/user-agent-rewriter/popup/choose_ua.css
2016-01-06 09:46:53 -08:00

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;
}