mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* Add new omnibox sample * Update api-samples/omnibox/simple-example/README.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/omnibox/simple-example/README.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/omnibox/simple-example/README.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/omnibox/simple-example/README.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/omnibox/simple-example/README.md Co-authored-by: Joe Medley <jmedley@google.com> * Update description * Update description * Rename the global variable --------- Co-authored-by: Joe Medley <jmedley@google.com>
32 lines
418 B
CSS
32 lines
418 B
CSS
html,
|
|
body {
|
|
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
font-size: 14px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
padding: 10px;
|
|
height: 100vh;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#logs {
|
|
max-height: calc(100vh - 100px);
|
|
font-size: 1.2rem;
|
|
position: fixed;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
right: 10px;
|
|
overflow: auto;
|
|
}
|