Files changed (1) hide show
  1. poke.css +86 -66
poke.css CHANGED
@@ -3,61 +3,12 @@ body {
3
  text-align: center;
4
  font-family: 'Piazzolla', serif;
5
  color: white;
6
- font-size: 19px;
7
  }
8
 
9
  h4 {
10
- font-size: 14px;
11
  margin: 0;
12
- margin-bottom: 0.5%;
13
- }
14
-
15
- #btnMenu {
16
- background-image: url("cog.png");
17
- background-size: cover;
18
- position:absolute;
19
- top:0;
20
- right:0;
21
- margin-right:1%;
22
- margin-top:1%;
23
- width:40px;
24
- height: 40px;
25
- border: none;
26
- background-color: transparent;
27
- }
28
-
29
- #menu-container {
30
- border-style: solid;
31
- border: 2px solid white;
32
- }
33
-
34
- #menu {
35
- position:absolute;
36
- top:0;
37
- right:0;
38
- margin:0;
39
- margin-top:3em;
40
- }
41
-
42
- nav {
43
- border-style: solid;
44
- border: 2px solid white;
45
- border-spacing: 5px;
46
- font-size: 26px;
47
- margin-right: 15px;
48
- padding-right: 10px;
49
- padding-left: 8px;
50
- }
51
-
52
- ul {
53
- margin-top: -1%;
54
- font-size: 20px;
55
- padding: 0;
56
- }
57
-
58
- li {
59
- list-style-type: none;
60
- font-size: 18px;
61
  }
62
 
63
  label {
@@ -72,6 +23,12 @@ label {
72
  object-fit: cover;
73
  }
74
 
 
 
 
 
 
 
75
  .pictype {
76
  width: 89px;
77
  height: 39px;
@@ -99,26 +56,16 @@ h3 {
99
  font-weight: 0;
100
  }
101
 
102
- input {
103
- background-color: rgb(20,20,20);
104
- color:white;
105
- }
106
-
107
- a {
108
- color:white;
109
- transition: transform .2s;
110
- }
111
-
112
- a:visited {
113
- text-decoration: none;
114
- color: white;
115
- }
116
-
117
  .stats {
118
  display: grid;
119
  grid-template-columns: repeat(2, 1fr);
120
  }
121
 
 
 
 
 
 
122
  #FP1 {
123
  padding-bottom:4px;
124
  }
@@ -165,4 +112,77 @@ a:visited {
165
  .monweak img {
166
  width: 52px;
167
  height: 22px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  }
 
3
  text-align: center;
4
  font-family: 'Piazzolla', serif;
5
  color: white;
6
+ font-size: 20px;
7
  }
8
 
9
  h4 {
10
+ font-size: 16px;
11
  margin: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  }
13
 
14
  label {
 
23
  object-fit: cover;
24
  }
25
 
26
+ .picpokShiny {
27
+ width: 288px;
28
+ height: 288px;
29
+ object-fit: cover;
30
+ }
31
+
32
  .pictype {
33
  width: 89px;
34
  height: 39px;
 
56
  font-weight: 0;
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  .stats {
60
  display: grid;
61
  grid-template-columns: repeat(2, 1fr);
62
  }
63
 
64
+ .shinies {
65
+ display: grid;
66
+ grid-template-columns: repeat(4, 1fr);
67
+ }
68
+
69
  #FP1 {
70
  padding-bottom:4px;
71
  }
 
112
  .monweak img {
113
  width: 52px;
114
  height: 22px;
115
+ }
116
+
117
+ .green-text {
118
+ color: green;
119
+ }
120
+
121
+ .red-text {
122
+ color: red;
123
+ }
124
+
125
+ a:link {
126
+ color:rgb(30,130,230);
127
+ background-color: transparent;
128
+ text-decoration: underline;
129
+ }
130
+
131
+ a:visited {
132
+ color:darkorchid;
133
+ background-color: transparent;
134
+ }
135
+
136
+ a:active {
137
+ color:darkorchid;
138
+ background-color: transparent;
139
+ text-decoration: dashed;
140
+ }
141
+
142
+ input {
143
+ font-size: inherit;
144
+ font-family: inherit;
145
+ }
146
+
147
+ /* MOBILE STYLE */
148
+ @media only screen and (max-width: 425px) {
149
+ .calculator {
150
+ padding: 1rem;
151
+ }
152
+
153
+ .calculator>*+* {
154
+ margin-top: 0.5rem;
155
+ }
156
+
157
+ .calculator input {
158
+ box-sizing: border-box;
159
+ padding : 0.5rem;
160
+ width : 100%;
161
+ }
162
+
163
+ .inputs>* {
164
+ display: block;
165
+ }
166
+
167
+ .inputs>*+* {
168
+ margin-top: 0.5rem;
169
+ }
170
+
171
+ .buttons {
172
+ display : flex;
173
+ flex-flow: row nowrap;
174
+ gap : 0.5rem;
175
+ }
176
+
177
+ .buttons>* {
178
+ flex: 1 1 33%;
179
+ }
180
+
181
+ #stats {
182
+ font-size: 0.9rem;
183
+ }
184
+
185
+ #shinies {
186
+ grid-template-columns: 1fr;
187
+ }
188
  }