mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* Add Reading List API sample * Apply suggestions from code review Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> * Add minimum_chrome_version --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
78 lines
1.3 KiB
CSS
78 lines
1.3 KiB
CSS
/* Copyright 2023 Google LLC
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. */
|
|
|
|
form {
|
|
display: inline-block;
|
|
border: 1px solid #dadce0;
|
|
min-width: 500px;
|
|
}
|
|
|
|
h1 {
|
|
background: #f6f9fe;
|
|
margin: 0;
|
|
padding: 15px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
label {
|
|
margin: 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
section {
|
|
margin: 10px;
|
|
border: 2px solid grey;
|
|
padding: 10px;
|
|
}
|
|
|
|
section h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
#error {
|
|
display: none;
|
|
color: rgb(136, 0, 0);
|
|
}
|
|
|
|
table {
|
|
margin-top: 10px;
|
|
border-collapse: collapse;
|
|
width: 500px;
|
|
}
|
|
|
|
tr {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
th:first-child,
|
|
td:first-child {
|
|
width: 40%;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid black;
|
|
padding: 5px;
|
|
text-align: center;
|
|
width: 20%;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
margin: 5px 0;
|
|
width: 100%;
|
|
}
|