-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
96 lines (80 loc) · 1.33 KB
/
index.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
90
91
92
93
94
95
96
* {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #e9edf7;
}
#title-header {
display: flex;
justify-content: center;
}
#sub-header {
display: flex;
justify-content: center;
font-size:1rem;
color:#1c2c51
}
#pokemon-collection {
margin-left: 4rem;
margin-right: 4rem;
}
.card {
text-align: center;
border: grey solid 1px;
border-radius: 7px;
padding: 1rem;
width: 10rem;
height: 10rem;
display: inline-grid;
margin: 1rem 1rem;
box-shadow: .5rem .5rem 1rem #aba8a8;
}
.name {
font-size: 1rem;
}
.pokemon-image {
display: block;
margin-left: auto;
margin-right: auto;
}
.caught-btn {
width:fit-content;
margin-left: auto;
margin-right: auto;
color: #ffffff;
background-color: #4F74C8;
border: 1px solid #4F74C8;
border-radius: 5px;
}
.caught-btn[disabled] {
background-color: #faf8f8;
color: #4F74C8;
}
.add-nickname {
font-size: .8rem;
}
a:link {
text-decoration: none;
}
.container {
margin-left: auto;
margin-right: auto;
}
.input-text {
width:5rem;
float:left;
}
.submit {
width: fit-content;
float:left;
}
.pokeNickname {
font-size: .8rem;
float:left;
}
.remove-nickname {
font-size:0.8rem;
margin-left: 1rem;
float:right;
}