-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
121 lines (113 loc) · 2.41 KB
/
Copy pathstyles.css
File metadata and controls
121 lines (113 loc) · 2.41 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
@import url(//db.onlinewebfonts.com/c/ea0517f0c20dfd81ffa9363950561257?family=FlexoW01-Regular);
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
background: #141E30; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #243B55, #141E30); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
position:relative;
font-family:'Gochi Hand', cursive;
}
.title{
margin-top: 30px;
}
.container{
width: 80%;
height: 100%;
margin: auto;
filter: blur(0px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.list{
width: 120%;
height: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
}
.pokemon{
width: 250px;
height: 190px;
background-color: #e2dada;
border-radius: 60px;
/* text-align: center; */
margin: 5px;
font-size: 18px;
display: flex;
flex-direction: column;
align-items: center;
padding: 5px;
border-color: #ffcc01#365fab ;
border-width: 5px;
border-style: solid;
}
.images{
width: 100px;
height: 100px;
}
.details{
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 300px;
justify-content: center;
}
.type{
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: space-between;
}
.types{
border-radius: 25px;
font-size: 15px;
width: 80px;
height: 30px;
text-align: center;
margin: 2px;
padding-top: 9px;
}
.loader{
font-size: 50px;
color: #ddd9d9;
border-radius: 6px;
border: 2px solid red;
}
.contLoader{
margin-top:17%;
display: flex;
align-items:center;
justify-content: center
}
#searchBox{
width: 260px;
height: 40px;
padding: 10px;
border-color: #365fab #ffcc01;
border-width: 5px;
border-style: solid;
margin-bottom: 20px;
font-size: x-large;
font-family:'Gochi Hand', cursive;;
}
footer p{
display: flex;
position: sticky;
right: 20px;
bottom: 20px;
justify-content: flex-end;
align-items:flex-end;
color:#365fab;
}
strong{
color : #ffcc01;
}