-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (66 loc) · 1.35 KB
/
style.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
68
69
70
71
72
73
74
75
* {
margin: 1;
}
html,
body {
background-color: #ffd165;
font-family: 'Roboto', sans-serif;
}
section {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 500px;
margin-top: 100px;
background-color: white;
padding: 15px;
border: 1px solid black;
border-radius: 5px;
box-shadow: 5px 5px 15px 5px #000000;
box-shadow: 5px 5px 15px 5px #000000;
}
section h1 {
font-size: 20px;
}
header {
background-image: url('https://cdn.vox-cdn.com/thumbor/lZIZFm2p0ZrCoG312XEf5Odi2IA=/312x0:1746x956/920x613/filters:focal(312x0:1746x956):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/37251612/pokemon-list.0.0.png');
background-size: cover;
height: 80px;
border-radius: 5px;
}
div {
padding: 15px;
border: 1px solid black;
background-color: #fff5de;
}
img {
width: 150px;
height: 150px;
border-radius: 100%;
margin-left: auto;
margin-right: auto;
display: block;
transform: translateY(-50%);
border: 8px solid white;
}
.container img {
max-width: 250px;
max-height: 150px;
width: auto;
height: auto;
}
a {
width: 64px;
height: 64px;
display: flex;
justify-content: center;
align-items: center;
}
ul {
margin-top: 3rem;
list-style: none;
padding: 0;
display: flex;
gap: 0.5rem;
justify-content: center;
}