-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (55 loc) · 1.08 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
/*
DO NOT MODIFY
CORE PAGE CSS
Photo by Carolina Castilla Arias: https://www.pexels.com/photo/close-up-photo-of-pokemon-pikachu-figurine-1716861/
*/
body {
color: #003049;
font-family: sans-serif;
background-color: #fdf0d5;
background: url("./images/pica.jpg") center no-repeat;
background-size: cover;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
main {
max-width: 500px;
min-width: 500px;
padding: 50px;
border-radius: 35px;
background-color: #f0f7c3;
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}
main h1 {
font-size: 2rem;
}
main ul.poke-items {
list-style-type: none;
margin: 0px;
padding: 0px;
}
main ul.poke-items li {
margin: 10px 0px 10px 0px;
border: 10px solid #003049;
padding: 20px;
border-radius: 20px;
background-color: #f4de52;
text-align: center;
font-size: 1.4rem;
}
/*
SCREEN READER UTILITY
*/
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}