-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (55 loc) · 1.04 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
* {
font-family: 'IBM Plex Mono', monospace;
}
form {
width: 500px;
margin: 20px auto ;
}
input {
width: 100%;
padding: .2rem .5rem;
text-align: center;
font-size: 2rem;
border-style: solid;
border-width: 0.2rem ;
background-color: #FDF6EC;
border-color: #060606a5;
}
.pokeTarjetaStyle {
position: relative;
height: fit-content;
padding: 1rem 1rem 1rem 1rem;
max-width: 700px;
text-align: center;
border-radius: 1rem;
margin: 0 auto;
}
#pokeImagenContainer{
position: relative;
width: 90%;
margin: 1rem;
padding: .8rem;
border-radius: 50%;
}
.pokeEstadisticasStyle div {
display: flex;
justify-content: space-between;
align-content: space-between;
margin: 2px;
padding: 0 5px 0 5px;
font-size: 1.1rem;
}
.pokeTipoStyle div {
margin: 5px;
padding: .4rem;
font-size: 1.1rem;
}
.pokeImagenStyle {
width: 100%;
border-radius: 50%;
background-size: cover;
}
.pokeNameStyle {
font-weight: 500;
font-size: 2rem;
}