mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* Remove docs folder. This was a redirect from a GitHub pages site that does not appear to be in use. * Rename api folder to api-samples. * Move examples to functional-samples folder. * Move cookbook sample to functional-samples. * Move tutorials to functional-samples folder. * Move mv2 and apps folders to _archive. * Rename tools folder to .repo. * Move reference folder to functional-samples. * Update README. Update README with new relative links for reorg. * Update README.md Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
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;
|
|
}
|