mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
19 lines
259 B
CSS
19 lines
259 B
CSS
body {
|
|
color: #fff;
|
|
background: #000;
|
|
font-family: Lucida Grande, Arial, sans-serif;
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.a {
|
|
color: #33f;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.a:hover {
|
|
color: #66f;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|