chrome-extension-cli
Version:
The CLI for your next Chrome Extension.
56 lines (48 loc) • 811 B
CSS
/* normalize css starts here */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* normalize css ends here */
html {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
sans-serif;
color: #222;
}
body {
width: 100vw;
height: 100vh;
background-color: #fff;
}
.app {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 20px;
}
code {
font-size: 12px;
font-family: inherit;
background-color: rgba(254, 237, 185, 0.3);
padding: 2px 4px;
border-radius: 2px;
}
.title {
font-size: 18px;
margin-bottom: 10px;
}
.message {
font-size: 22px;
}
.divider {
margin: 30px auto;
width: 50px;
border: 0.5px dashed #000;
opacity: 0.2;
}