40 lines
881 B
CSS
40 lines
881 B
CSS
.app_container {
|
|
display: flex;
|
|
flex-direction: column;;
|
|
align-items: center;
|
|
justify-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-image: url("./assets/bg.png");
|
|
background-size: initial;
|
|
background-repeat: repeat;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
.filter__container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: 7vh 0 5vh 0;
|
|
gap: 0 2vw;
|
|
}
|
|
|
|
.filter__items {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-family: 'barcadebrawl';
|
|
font-size: 12px;
|
|
}
|