-
Notifications
You must be signed in to change notification settings - Fork 410
/
Copy pathstyle.css
67 lines (58 loc) · 978 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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;
}