-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
75 lines (64 loc) · 1.2 KB
/
index.css
File metadata and controls
75 lines (64 loc) · 1.2 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
*{
margin: 2vh 0px 0 0 ;
padding: 0 ;
}
#base{
margin: 0 auto;
padding: 0 10vw 0 10vw;
min-width: 600px;
}
body {
background-image: url("images/poke.jpg");
background-size: cover;
text-align: center;
font-family: 'Press Start 2P', cursive;
overflow-x: hidden;
}
#pokedex{
background-color: #fed600;
width: 42vw;
margin: 50px auto ;
border: rgb(0, 0, 0) solid 3px;
border-radius: 10px;
overflow-y: scroll;
max-height: 60vh;
min-width: 400px;
}
#title{
background-color: #fed600;
width: 40vw;
margin: 0 auto;
padding: 10px;
border: rgb(0, 0, 0) solid 4px;
border-radius: 5px;
font-size: 5vw;
}
a:link {
color: black;
background-color: #fed600;
text-decoration: none;
}
a:visited {
color: #6c5693;
background-color: transparent;
text-decoration: none;
}
#footer{
width: 100%;
background-color: #3d3d3d;
padding: 30px 0 30px 0;
margin: 0;
position: absolute;
bottom: 0;
}
.pokeCont{
border: 1px solid black;
display: flex;
margin: auto;
justify-content: space-around;
font-size: calc(5px + 1.5vw);
align-items: center;
}
.pokeIm{
width: 8vw;
}