2023-03-03 18:51:39 +11:00
|
|
|
.app_container {
|
2023-03-18 22:52:01 +11:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-items: center;
|
|
|
|
min-height: 100vh;
|
2023-03-03 18:51:39 +11:00
|
|
|
}
|
|
|
|
|
2023-03-03 16:24:15 +11:00
|
|
|
body {
|
2023-03-18 22:52:01 +11:00
|
|
|
margin: 0;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
2023-03-03 16:24:15 +11:00
|
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
|
|
sans-serif;
|
2023-03-18 22:52:01 +11:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
background-image: url('./assets/bg.png');
|
|
|
|
background-size: initial;
|
|
|
|
background-repeat: repeat;
|
2023-03-03 16:24:15 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2023-03-18 22:52:01 +11:00
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
2023-03-03 16:24:15 +11:00
|
|
|
monospace;
|
|
|
|
}
|
2023-03-03 18:51:39 +11:00
|
|
|
|
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
|
|
|
}
|
2023-04-17 22:34:18 +10:00
|
|
|
|
|
|
|
.all__pokemons {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|