AdamOswald1
commited on
Commit
•
6887937
1
Parent(s):
9a1eb29
Upload poke.css
Browse files
poke.css
ADDED
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background-color: rgb(20,20,20);
|
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 {
|
64 |
+
font-family: 'Piazzolla', serif;
|
65 |
+
font-weight: bolder;
|
66 |
+
font-size: 25px;
|
67 |
+
}
|
68 |
+
|
69 |
+
.picpok {
|
70 |
+
width: 150px;
|
71 |
+
height: 150px;
|
72 |
+
object-fit: cover;
|
73 |
+
}
|
74 |
+
|
75 |
+
.pictype {
|
76 |
+
width: 89px;
|
77 |
+
height: 39px;
|
78 |
+
}
|
79 |
+
|
80 |
+
.button {
|
81 |
+
margin: 0px;
|
82 |
+
font-size: 20px;
|
83 |
+
}
|
84 |
+
|
85 |
+
h1 {
|
86 |
+
margin:0;
|
87 |
+
}
|
88 |
+
|
89 |
+
h2 {
|
90 |
+
font-weight: 400;
|
91 |
+
margin: 0;
|
92 |
+
padding-bottom: 14px;
|
93 |
+
height: 20px;
|
94 |
+
}
|
95 |
+
|
96 |
+
h3 {
|
97 |
+
margin: 0;
|
98 |
+
font-size: 15px;
|
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 |
+
}
|
125 |
+
|
126 |
+
#FP2 {
|
127 |
+
padding-bottom:4px;
|
128 |
+
}
|
129 |
+
|
130 |
+
#R2 {
|
131 |
+
height: 30px;
|
132 |
+
}
|
133 |
+
|
134 |
+
#L2 {
|
135 |
+
height: 30px;
|
136 |
+
}
|
137 |
+
|
138 |
+
#bottom {
|
139 |
+
font-family: 'Arial', serif;
|
140 |
+
font-size: 12px;
|
141 |
+
position: absolute;
|
142 |
+
bottom: 0;
|
143 |
+
left: 0;
|
144 |
+
width: 100%;
|
145 |
+
text-align: center
|
146 |
+
}
|
147 |
+
|
148 |
+
.monstats {
|
149 |
+
padding-bottom: 2px;
|
150 |
+
}
|
151 |
+
|
152 |
+
.montotal {
|
153 |
+
padding-bottom: 10px;
|
154 |
+
}
|
155 |
+
|
156 |
+
.monab {
|
157 |
+
padding-bottom: 8px;
|
158 |
+
}
|
159 |
+
|
160 |
+
.monweak {
|
161 |
+
vertical-align: auto;
|
162 |
+
padding-bottom: 4px;
|
163 |
+
}
|
164 |
+
|
165 |
+
.monweak img {
|
166 |
+
width: 52px;
|
167 |
+
height: 22px;
|
168 |
+
}
|