mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +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>
70 lines
981 B
CSS
70 lines
981 B
CSS
body {
|
|
font-family: 'Open Sans', arial, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.apps {
|
|
background-color: #E5E5E5;
|
|
border-radius: 2px;
|
|
border: 1px solid #ddd;
|
|
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
|
|
padding: 5px;
|
|
margin: 0;
|
|
}
|
|
a, a:visited, a:hover {
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
color: #00E;
|
|
}
|
|
|
|
.apps li {
|
|
list-style: none;
|
|
position: relative;
|
|
border-bottom: 1px solid #C6C6C6;
|
|
box-shadow: 0px 1px 0px 0px #FEFEFE;
|
|
padding: 5px 0;
|
|
}
|
|
.apps li:hover {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.apps li:last-child {
|
|
border-bottom: 0;
|
|
box-shadow: 0px;
|
|
}
|
|
|
|
.apps li:after {
|
|
content: ".";
|
|
display: block;
|
|
height: 0;
|
|
visibility: hidden;
|
|
clear: both;
|
|
}
|
|
|
|
.apps h2 {
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
.apps li p {
|
|
margin: 0;
|
|
}
|
|
|
|
.apps li img {
|
|
width: 64px;
|
|
float: left;
|
|
margin: 0 10px 5px 5px;
|
|
}
|
|
|
|
.apps li:hover .actions {
|
|
visibility: visible;
|
|
}
|
|
|
|
.apps .actions {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
text-align: right;
|
|
right: 5px;
|
|
bottom: 10px;
|
|
}
|
|
|