44 lines
632 B
CSS
44 lines
632 B
CSS
|
* {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
||
|
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 {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fill, 300px);
|
||
|
grid-gap: 10px;
|
||
|
}
|