-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathstyle.css
92 lines (77 loc) · 1.55 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.gameboy {
background-color: #8bac0f;
width: 320px;
margin: 40px auto;
padding: 20px 20px 40px 20px;
border: 10px solid #0f380f;
border-radius: 20px;
box-shadow: 5px 5px 15px #000;
display: flex;
flex-direction: column;
align-items: center;
}
.screen-container {
background-color: #0f380f;
padding: 10px;
border: 5px ridge #306230;
margin-bottom: 20px;
}
.choices, .stats {
text-align: left;
}
.controls {
display: flex;
justify-content: space-between;
width: 100%;
}
.d-pad, .action-buttons {
display: flex;
flex-direction: column;
justify-content: center;
}
.button {
width: 30px;
height: 30px;
margin: 2px;
background-color: #306230;
border-radius: 50%;
}
.up, .down {
margin-left: 15px;
}
.right {
align-self: flex-end;
}
.left {
align-self: flex-start;
}
.a-button, .b-button {
width: 35px;
height: 35px;
font-family: 'Press Start 2P', cursive;
display: flex;
justify-content: center;
align-items: center;
margin: 0 5px;
}
body, input.pokemon, button.search {
font-family: 'Press Start 2P', cursive;
color: #0f380f;
}
input.pokemon, button.search {
background-color: #9bbc0f;
border: 2px solid #0f380f;
margin: 5px 0;
padding: 10px;
}
button.search:hover {
background-color: #8bac0f;
}
.pokemon-name, .pokemon-image {
margin: 10px 0;
color: white;
text-align: center
}
img {
width: 300px;
}