-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
69 lines (57 loc) · 1.03 KB
/
app.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
/* Estilos para toda la pagina */
body{
background:orange;
}
/* Estilos para el titulo */
h1{
color:#ffcc03;
text-align: center;
font-size: 4em;
padding-top:1%;
}
.box {
display: inline-block;
padding: 1rem;
margin: 1rem;
}
/* Estilos para la aplicacion */
#app{
padding-top: 5%;
text-align:center;
}
.box.winner {
background: green;
}
/* Estilos para los pokemon */
.pokemon {
width: 5rem;
display: inline-block;
margin: 1rem;
}
.pokemon-head, .pokemon-body {
height: 5rem;
}
.pokemon-feet {
height: 3rem;
}
.pokemon.bulvasaur .pokemon-head {
background: #ff6a62;
}
.pokemon.bulvasaur .pokemon-body {
background: #62d5b4;
}
.pokemon.bulvasaur .pokemon-feet {
background: #317373;
}
.pokemon.squirtle .pokemon-head, .pokemon.squirtle .pokemon-feet {
background: #8bc5cd;
}
.pokemon.squirtle .pokemon-body {
background: #ffe69c;
}
.pokemon.charmander {
background: #de5239;
}
.pokemon.pikachu {
background: #f6e652;
}