nyx-dashboard/styles/globals.css

49 lines
793 B
CSS
Raw Normal View History

2022-01-08 22:38:17 +01:00
@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;
2022-01-08 22:38:17 +01:00
font-family: "Epilogue", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2021-06-27 12:44:22 +02:00
background: #1a202c;
2021-06-20 13:39:00 +02:00
}
.page-container {
padding: 2vw;
margin: 2vw;
}
@media screen and (max-width: 600px) {
.page-container {
padding: 2px;
margin: 2px;
2022-01-08 22:38:17 +01:00
}
2021-06-20 13:39:00 +02:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
.flex {
display: flex;
justify-content: space-between;
}
.grid {
margin: 50px;
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;
2022-01-08 22:38:17 +01:00
}