-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (56 loc) · 1.14 KB
/
Copy pathstyles.css
File metadata and controls
64 lines (56 loc) · 1.14 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
/* Pokémon-themed styles */
body {
font-family: 'Press Start 2P', cursive;
background-color: #FFF06A; /* Pokémon yellow */
color: #3b4cca; /* Pokémon blue */
max-width: 600px;
margin: 0 auto;
padding: 20px;
text-align: center;
line-height: 1.5; /* Improves readability */
}
h3 {
color: #cc0000; /* Pokémon red */
text-shadow: 2px 2px 0 #fff;
}
p{
font-size: 14px;
}
select {
font-family: inherit;
font-size: 12px;
padding: 10px 30px 10px 8px;
width: 220px;
height: auto;
min-height: 50px;
border: 3px solid #3b4cca;
border-radius: 5px;
background-color: white;
color: #3b4cca;
cursor: pointer;
line-height: 1.5;
}
select:hover {
background-color: #ffde00;
}
#sprite-container {
margin: 10px auto;
text-align: center;
}
#sprite {
width: 96px;
height: 96px;
}
/* Hidden by default, shown only after selection */
#name, #height, #weight {
display: none; /* Initially hidden */
margin: 10px auto;
padding: 10px;
width: 60%;
font-size: 12px;
line-height: 1.5;
text-align: left;
background-color: white;
border: 2px solid #3b4cca; /* Solid border (no dashes) */
border-radius: 5px;
}