create-chrome-ext
Version:
Scaffolding your chrome extension, multiple boilerplates supported!
49 lines (42 loc) • 720 B
CSS
:root {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
}
@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #142d61;
}
}
main {
text-align: center;
padding: 1em;
margin: 0 auto;
}
h3 {
color: #142d61;
text-transform: uppercase;
font-size: 1.5rem;
font-weight: 200;
line-height: 1.2rem;
margin: 2rem auto;
}
h6 {
font-size: 0.5rem;
color: #333333;
margin: 0.5rem;
}
a {
font-size: 0.5rem;
margin: 0.5rem;
color: #cccccc;
text-decoration: none;
}
@media (min-width: 480px) {
h3 {
max-width: none;
}
}