mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
23 lines
470 B
CSS
23 lines
470 B
CSS
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-image: url("../hello_world.png"), -webkit-radial-gradient(center, ellipse cover,#FFFFFF 0%,#FAFAFA 50%,#F5F5F5 60%,#BEBEBE 100%);
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
text-align: center;
|
|
width: 100%;
|
|
line-height: 120%;
|
|
font-family: Arial, sans-serif;
|
|
color: rgb(66,66,66);
|
|
letter-spacing: -0.05em;
|
|
}
|