2023-05-07 23:10:23 +10:00
|
|
|
html {
|
|
|
|
--toggle: hsl(230deg 17% 85%);
|
2023-05-19 00:07:45 +10:00
|
|
|
--bggradient: url('assets/images/bg.png');
|
2023-05-07 23:10:23 +10:00
|
|
|
--bgcolor: none;
|
|
|
|
--colorPrimary: #000;
|
|
|
|
--filterHeading: #000;
|
|
|
|
--selectBg: #fff;
|
|
|
|
--selectText: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[data-theme='dark'] {
|
|
|
|
--toggle: linear-gradient(90deg, hsl(216deg 52% 48%), hsl(51deg 100% 60%));
|
|
|
|
--bggradient: none;
|
|
|
|
--bgcolor: #16171f;
|
|
|
|
--colorPrimary: #fff;
|
|
|
|
--filterHeading: #707384;
|
|
|
|
--selectBg: #16171f;
|
|
|
|
--selectText: #707384;
|
|
|
|
}
|
|
|
|
|
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-05-07 23:10:23 +10:00
|
|
|
@font-face {
|
|
|
|
font-family: 'barcadebrawl';
|
|
|
|
src: url('assets/fonts/BarcadeBrawl.ttf');
|
|
|
|
}
|
|
|
|
|
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;
|
2023-05-19 00:07:45 +10:00
|
|
|
background-image: url('assets/images/bg.png');
|
2023-03-18 22:52:01 +11:00
|
|
|
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;
|
|
|
|
}
|