mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
67 lines
994 B
CSS
67 lines
994 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: rgba(102, 102, 119, 0.85);
|
|
background: white;
|
|
width: 100%;
|
|
-webkit-app-region: drag;
|
|
}
|
|
|
|
div#main {
|
|
position: absolute;
|
|
top: 44px;
|
|
bottom: 0;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
color: white;
|
|
color: black;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
ul#results {
|
|
list-style: none;
|
|
font-family: Arial, Helvetica, Sans-Serif;
|
|
font-size: 12px;
|
|
line-height: 21px;
|
|
padding: 0em 0.5em;
|
|
padding-right: 2em;
|
|
margin: 0;
|
|
}
|
|
|
|
ul.working#results {
|
|
background: url(img/working.gif) no-repeat center;
|
|
min-height: 80px;
|
|
}
|
|
|
|
ul strong.warning {
|
|
color: #D14836;
|
|
text-align: center;
|
|
display: block;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
ul#results > ul {
|
|
list-style: square;
|
|
}
|
|
|
|
ul#results > li {
|
|
font-weight: bold;
|
|
margin-left: 1em;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
ul.loading {
|
|
background: red;
|
|
}
|
|
|
|
ul#results li em {
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
opacity: 0.33;
|
|
}
|
|
|
|
ul#results li em::before {
|
|
content: "\2014 \a0";
|
|
padding: 0 4px;
|
|
}
|