nyx-dashboard/styles/globals.css

47 lines
776 B
CSS
Raw Normal View History

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@600&family=Poppins:wght@500&display=swap');
2021-06-20 13:39:00 +02:00
* {
color: #fff;
}
html,
body {
padding: 0;
margin: 0;
font-family: 'Epilogue',-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
2021-06-20 13:39:00 +02:00
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
background: #121212;
}
.page-container {
padding: 2vw;
margin: 2vw;
}
@media screen and (max-width: 600px) {
.page-container {
padding: 2px;
margin: 2px;
}
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
.flex {
display: flex;
justify-content: space-between;
}
.grid {
margin-top: 50px;
2021-06-20 13:39:00 +02:00
display: grid;
grid-template-columns: repeat(auto-fill, 350px);
2021-06-20 13:39:00 +02:00
grid-gap: 10px;
}