mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
* Update sample file structure. * Update description * Fix wrong favicon path * Add basic sample * Update README.md * Fix comments
29 lines
487 B
CSS
29 lines
487 B
CSS
/* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
html {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
#spacer {
|
|
height: 200px;
|
|
}
|
|
|
|
#title {
|
|
color: #555;
|
|
font-weight: bold;
|
|
height: 200px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#mostVisitedThumb {
|
|
background-repeat: no-repeat;
|
|
height: 200px;
|
|
margin-left: 20px;
|
|
padding-left: 20px;
|
|
vertical-align: middle;
|
|
width: 212px;
|
|
}
|