-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (86 loc) · 1.29 KB
/
styles.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Acme', sans-serif;
}
body {
background-color: whitesmoke;
max-width: 100vw;
}
main {
min-height: 87vh;
}
.nav-link {
color: white;
}
.card-box {
max-width: 22rem;
min-width: 22rem;
}
.img-space {
position: relative;
height: 20rem;
width: auto;
}
.pokemon-low {
position: absolute;
margin-top: 10rem;
height: 10rem;
width: auto;
}
.pokemon-mid {
position: absolute;
margin-top: 5rem;
height: 15rem;
width: auto;
}
.pokemon-high {
position: absolute;
height: 20rem;
width: auto;
}
.h5 {
padding: 0 2rem 0 2rem;
font-size: 0.65rem;
}
.h4 {
padding: 0 2rem 0 2rem;
font-size: 0.85rem;
}
.h3 {
font-size: 1.2rem;
}
.division-bar {
height: 0.3rem;
margin: 0 2rem 0 2rem;
}
.shape {
filter: invert(25%)
}
.footprint {
max-height: 85%;
filter: grayscale(100%)
}
.white-box {
background-color: white;
height: 2rem;
width: 4rem;
}
.inputGuess {
border: none;
}
input:focus{
outline: none;
}
.hidden {
visibility: hidden;
}
footer p {
font-size: 0.85rem;
}
a {
text-decoration: none;
color: black;
}