Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
rajnil9 authored Nov 8, 2024
1 parent a96166a commit c77897c
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions pokemon game/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/* Global styles */
body {
font-family: Arial, sans-serif;
background-color: #f1f1f1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}

header {
background-color: #ffcb05;
width: 100%;
text-align: center;
padding: 20px 0;
}

h1 {
margin: 0;
font-size: 36px;
}

.game-container {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
width: 300px;
}

.pokemon {
text-align: center;
}

.pokemon img {
width: 150px;
height: 150px;
}

.battle-controls {
margin-top: 20px;
text-align: center;
}

button {
background-color: #ffcb05;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}

button:hover {
background-color: #ffdd41;
}

#battle-log {
margin-top: 10px;
font-style: italic;
color: #555;
}

0 comments on commit c77897c

Please sign in to comment.