pokertk/src/index.css

47 lines
954 B
CSS
Raw Normal View History

.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;
}
2023-03-23 21:45:20 +11:00
.pokemon__container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2023-03-26 18:20:17 +11:00
}