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>
65 lines
991 B
CSS
65 lines
991 B
CSS
/**
|
|
* Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#main {
|
|
font-family: arial,helvetica;
|
|
font-size: 10pt;
|
|
text-align: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 10px 30px 20px 30px;
|
|
width: 800px;
|
|
border-left: solid 1px #ccc;
|
|
border-right: solid 1px #ccc;
|
|
}
|
|
#stop {
|
|
margin-left: 100px;
|
|
}
|
|
#container {
|
|
text-align: left;
|
|
}
|
|
#instructions {
|
|
text-align: left;
|
|
}
|
|
.outer {
|
|
margin: 12px 6px 6px 6px;
|
|
padding: 6px;
|
|
border: 1px solid #000;
|
|
}
|
|
.outer.disabled {
|
|
border: 1px solid #696969;
|
|
}
|
|
.runTestButton {
|
|
margin: 12px;
|
|
}
|
|
.description {
|
|
margin: 6px 12px;
|
|
}
|
|
.results {
|
|
margin: 12px;
|
|
}
|
|
.messages {
|
|
margin: 12px;
|
|
}
|
|
.error {
|
|
color: #900;
|
|
}
|
|
.result {
|
|
margin: 6px;
|
|
padding: 6px;
|
|
}
|
|
.success {
|
|
font-weight: bold;
|
|
color: #090;
|
|
}
|
|
.failure {
|
|
font-weight: bold;
|
|
color: #900;
|
|
}
|
|
.disabled {
|
|
color: #696969 !important;
|
|
}
|