forked from BoG-Dev-Bootcamp-F23/project1-f23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (76 loc) · 1.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
font-family: "Inter", sans-serif;
}
#top-header {
text-align: center;
font-size: 64px;
}
#main-container {
display: flex;
justify-content: space-around;
}
#left-container, #right-container {
width: 30%;
}
#pokemon-pic {
width: 100%;
border: solid 4px black;
margin-top: 15px;
}
#name-container {
background-color: #e8e8e8;
border: solid 1px black;
border-radius: 10px;
text-align: center;
margin-top: 20px;
font-size: 36px;
padding: 10px;
}
#types-header {
font-size: 24px;
}
#types-container {
background-color: white;
display: flex;
flex-wrap: wrap;
}
.type {
background-color: #e8e8e8;
padding: 8px 12px;
border-radius: 10px;
margin-bottom: 10px;
margin-right: 10px;
font-size: 24px;
}
.btns-container {
display: flex;
justify-content: center;
}
.btn-container {
width: 173px;
height: 69px;
display: flex;
justify-content: center;
align-items: center;
background-color: #e8e8e8;
border-radius: 10px;
margin: 30px 15px;
font-size: 36px;
}
#left-pic, #right-pic {
height: 40px;
}
#right-header {
font-size: 36px;
text-align: center;
margin-top: 0;
margin-bottom: 35px;
}
#stats-container {
height: 500px;
background-color: #e8e8e8;
margin-bottom: 40px;
padding: 30px;
font-size: 36px;
overflow: auto;
}