-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (91 loc) · 1.62 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
background-color: rgb(85, 137, 137);
}
header {
background-color: black;
color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
}
.imageCard {
width: 300px;
height: auto;
}
.tittle {
text-align: center;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
border-radius: 10px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
}
.container {
padding: 2px 16px;
background-color: rgb(91, 186, 154);
border-radius: 0px 0px 10px 10px;
}
.div-container-cards {
margin-top: 150px;
max-width: 1000px;
display: flex;
flex-wrap: wrap;
gap: 50px;
}
.div-supreme {
max-width: 1000px;
margin: auto;
padding: 10px;
}
.name-pokemon {
text-align: center;
font-size: medium;
font-style: normal;
}
.card-description {
max-width: 1000px;
border-radius: 10px;
}
.under-search {
display: flex;
justify-content: center;
}
.card-description:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
}
.card-description:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
border-radius: 10px;
}
.name-pokemon-description {
font-size: 30px;
padding-top: 8px;
margin: 0px;
}
.input-text {
width: 100%;
height: 40px;
border-radius: 20px;
border: 0px;
}
.submit-button {
border-radius: 15px;
border: 1px solid rgb(2, 52, 41);
background-color: rgb(30, 136, 142);
}
.input-container {
display: flex;
justify-content: center;
margin: 10px 0px 100px 0px;
}
.containerDes {
display: flex;
justify-content: center;
background-color: rgb(91, 186, 154);
border-radius: 0px 0px 10px 10px;
height: 50px;
}