create-chrome-ext
Version:
Scaffolding your chrome extension, multiple boilerplates supported!
64 lines (55 loc) • 938 B
CSS
:root {
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
'Helvetica Neue',
sans-serif;
color-scheme: light dark;
background-color: #242424;
}
@media (prefers-color-scheme: light) {
:root {
background-color: #fafafa;
}
}
body {
min-width: 20rem;
margin: 0;
}
section::before {
content: '';
position: fixed;
z-index: -1;
width: 100vw;
height: 100vh;
background-image: url('https://source.unsplash.com/random');
background-size: cover;
filter: blur(10px);
}
section {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
h1 {
color: #f3e5ab;
text-transform: uppercase;
font-size: 6rem;
margin: 2rem auto;
}
a {
font-size: 0.5rem;
margin: 0.5rem;
color: #cccccc;
text-decoration: none;
}