-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
84 lines (67 loc) · 1.42 KB
/
app.css
File metadata and controls
84 lines (67 loc) · 1.42 KB
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
body{
background-color: rgb(47,50,63);
}
.card{
background-color:rgb(100,100,124);
color: rgb(47,50,63);
font-weight: bold;
}
#pokemon-card-holder .card{
border-top: 10px solid rgb(100,100,124);
}
h1{
background-color:rgb(100,100,124);
color: rgb(196, 159, 59);
font-family: "press Start 2P",system-ui;
}
#pokemon-card{
scale: 1;
transition: scale 0.2s;
}
#pokemon-card:hover{
scale: 1.01;
transition: scale 0.2s;
}
#pokemon-card-holder .shiny-card{
border-top: 10px solid goldenrod;
background-color: goldenrod;
}
.shiny-card .type-card{
border: solid 2px rgb(47,50,63);
border-radius: 5px;
}
#search,#htp-title,#thanks{
font-family: "press Start 2P",system-ui;
}
#pokemon-sprite{
image-rendering: pixelated;
}
#versus-text{
color: rgb(196, 159, 59);
font-family: "press Start 2P",system-ui;
font-size: 5vw;
}
#result-text{
font-family: "press Start 2P",system-ui;
}
#restart{
background-color: rgb(100,100,124);
border-color: rgb(196, 159, 59);
}
.img-thumbnail{
background-color: rgb(47,50,63);
border-width: 0px;
}
#htp-title{
color: rgb(196, 159, 59);
font-family: "press Start 2P",system-ui;
}
#shoutout a,#thanks a{
color: rgb(39, 84, 138);
text-decoration: none;
font-family: "press Start 2P",system-ui;
}
#shoutout a:hover,#thanks a:hover{
color: rgb(196, 159, 59);
text-decoration: underline;
}