-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 883 Bytes
/
style.css
File metadata and controls
50 lines (44 loc) · 883 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
background-color: aqua;
font-family: Arial, Helvetica, sans-serif;
}
#header-content {
width: 100%;
height: 70px;
background-color: white;
margin-top: 30px;
display: flex;
justify-content: center;
align-items: center;
}
#main-content .container-pokemon {
background-color: #44444456;
width: 400px;
height: 400px;
text-align: center;
padding-top: 30px;
font-size: 36px;
margin: 10px auto;
cursor: pointer;
}
#main-content .container-pokemon img {
width: 70%;
display: flex;
margin: auto;
}
.container-pokemons {
display: grid;
grid-template-columns: 3fr 3fr 3fr;
margin: 30px auto;
}
input {
width: 80%;
height: 40px;
display: flex;
margin: 20px auto;
padding-left: 10px;
}