write-ups-challenges-2020-2021/gotta_catch_em_all/frontend/styles.css
2022-11-24 18:03:20 +01:00

44 lines
755 B
CSS

@font-face {
font-family: pokefont;
src: url(./pokefont.ttf);
}
.pokecell {
text-align: center;
min-width: 200px;
width: 200px;
max-width: 200px;
min-height: 200px;
height: 200px;
max-height: 200px;
border: 3px solid black;
}
#capturedPokemon {
/*display: flex;
justify-content: center;
align-items: center;*/
margin-left: auto;
margin-right: auto;
}
h1 {
text-align: center;
}
form {
text-align: center;
border: 2px solid black;
padding: 1rem;
margin-left: 40%;
margin-right: 40%;
}
#pokedexTitle {
font-family: pokefont;
letter-spacing: 7px;
color: yellow;
font-size: 5rem;
-webkit-text-stroke-width: 3px;
-webkit-text-stroke-color: blue;
}