Files
memory-infrastructure-palace/code/websites/pokedex.online/src/style.css

20 lines
334 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
#app {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}